MoveToRecycleBin() public static method

public static MoveToRecycleBin ( string path ) : bool
path string
return bool
Example #1
0
 // Token: 0x06000982 RID: 2434 RVA: 0x003B688C File Offset: 0x003B4A8C
 public static void Delete(string path, bool cloud)
 {
     if (cloud && SocialAPI.Cloud != null)
     {
         SocialAPI.Cloud.Delete(path);
         return;
     }
     FileOperationAPIWrapper.MoveToRecycleBin(path);
 }
Example #2
0
 public static void Delete(string path)
 {
     FileOperationAPIWrapper.MoveToRecycleBin(path);
 }