Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8" ?>
- <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
- <CodeSnippet Format="1.0.0">
- <Header>
- <Title>AH DeleteSafe</Title>
- <Shortcut>ahDeleteSafe</Shortcut>
- <Description>Code snippet created on: 2/26/2011 5:01:45 PM</Description>
- <Author>Andrew Hodgson</Author>
- <SnippetTypes>
- <SnippetType>Expansion</SnippetType>
- </SnippetTypes>
- </Header>
- <Snippet>
- <Declarations>
- <Literal>
- <ID>type</ID>
- <ToolTip>Property type</ToolTip>
- <Default>string</Default>
- </Literal>
- <Literal>
- <ID>property</ID>
- <ToolTip>Property name</ToolTip>
- <Default>MyProperty</Default>
- </Literal>
- </Declarations>
- <Code Language="csharp">
- <![CDATA[ static bool DeleteSafe(string filepath) {
- try {
- File.Delete(filepath);
- return true;
- }
- catch {
- try {
- File.SetAttributes(filepath,FileAttributes.Normal);
- File.Delete(filepath);
- return true;
- }
- catch { }
- }
- return false;
- }$end$]]>
- </Code>
- </Snippet>
- </CodeSnippet>
- </CodeSnippets>
Advertisement
Add Comment
Please, Sign In to add comment