Parameters
- writableFileInfo
- The writable file info object that will perform the operation.
- text
- Text to be written to file.
Exception | Description |
---|---|
System.ArgumentNullException |
A This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception. |
System.IO.IOException | An I/O error has occurred. This is an operation error that depends on factors external to your program, and thus cannot be always avoided. Your code must handle it appropriately. |
System.NotSupportedException | An invoked method is not supported at all, or is not supported with the parameters used to create the object. |
System.UnauthorizedAccessException | The operating system has denied access because of an I/O error or a specific type of security error. This is an operation error that depends on factors external to your program, and thus cannot be always avoided. Your code must handle it appropriately. |
If the file does not already exist, the method creates it.
This method is similar to FileSystem.WriteAllText Method for normal (operating system) files.
The overloads of this method that do not specify the encoding use UTF-8 encoding to write to the file. To specify a different encoding, use aan appropriate overload of this method.