Business.FileOperationAPIWrapper.DeleteCompletelySilent C# (CSharp) Метод

DeleteCompletelySilent() публичный статический Метод

public static DeleteCompletelySilent ( string path ) : bool
path string
Результат bool
        public static bool DeleteCompletelySilent(string path) {
            return deleteFile(path,
                              FileOperationFlags.FOF_NOCONFIRMATION | FileOperationFlags.FOF_NOERRORUI |
                              FileOperationFlags.FOF_SILENT);
        }
    }