You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Opens a System.IO.FileStream on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.
289
+
/// Opens a System.IO.FileStream on the specified path, with the specified mode and access.
291
290
/// </summary>
292
291
/// <param name="path">The file to open.</param>
293
292
/// <param name="mode">A System.IO.FileMode value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
294
293
/// <param name="access">A System.IO.FileAccess value that specifies the operations that can be performed on the file.</param>
295
-
/// <param name="share">A System.IO.FileShare value specifying the type of access other threads have to the file.</param>
296
-
/// <returns>A System.IO.FileStream on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</returns>
294
+
/// <returns>An unshared System.IO.FileStream that provides access to the specified file, with the specified mode and access.</returns>
Copy file name to clipboardExpand all lines: src/Abstract.FileSystem/FileService.cs
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -244,7 +244,6 @@ public DateTime GetLastWriteTimeUtc(string path)
244
244
}
245
245
246
246
/// <summary>
247
-
/// /// <summary>
248
247
/// Moves a specified file to a new location, providing the option to specify a new file name.
249
248
/// </summary>
250
249
/// <param name="sourceFileName">The name of the file to move. Can include a relative or absolute path.</param>
@@ -255,13 +254,12 @@ public void Move(string sourceFileName, string destFileName)
255
254
}
256
255
257
256
/// <summary>
258
-
/// Opens a System.IO.FileStream on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.
257
+
/// Opens a System.IO.FileStream on the specified path, with the specified mode and access.
259
258
/// </summary>
260
259
/// <param name="path">The file to open.</param>
261
260
/// <param name="mode">A System.IO.FileMode value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
262
261
/// <param name="access">A System.IO.FileAccess value that specifies the operations that can be performed on the file.</param>
263
-
/// <param name="share">A System.IO.FileShare value specifying the type of access other threads have to the file.</param>
264
-
/// <returns>A System.IO.FileStream on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</returns>
262
+
/// <returns>An unshared System.IO.FileStream that provides access to the specified file, with the specified mode and access.</returns>
/// Opens a System.IO.FileStream on the specified path, with the specified mode and access.
189
189
/// </summary>
190
190
/// <param name="path">The file to open.</param>
191
-
/// <param name="mode">A System.IO.FileMode value that specifies whether a file is created if one doesnot exist, and determines whether the contents of existing files are retained or overwritten.</param>
191
+
/// <param name="mode">A System.IO.FileMode value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
192
192
/// <param name="access">A System.IO.FileAccess value that specifies the operations that can be performed on the file.</param>
193
193
/// <returns>An unshared System.IO.FileStream that provides access to the specified file, with the specified mode and access.</returns>
0 commit comments