Ejemplo n.º 1
0
 /// <see cref="IFileUtilities.CreateFileStream(string, FileMode, FileAccess, FileShare, FileOptions, bool, bool)"/>
 public static FileStream CreateFileStream(
     string path,
     FileMode fileMode,
     FileAccess fileAccess,
     FileShare fileShare,
     FileOptions options = FileOptions.None,
     bool force          = false,
     bool allowExcludeFileShareDelete = false)
 {
     return(s_fileUtilities.CreateFileStream(path, fileMode, fileAccess, fileShare, options, force, allowExcludeFileShareDelete));
 }