-
Notifications
You must be signed in to change notification settings - Fork 35
T_CodeJam_IO_TempData
Andrew Koryavchenko edited this page Jun 17, 2018
·
10 revisions
Methods to work with temporary data.
System.Object
CodeJam.IO.TempData
Namespace: CodeJam.IO
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static class TempData
VB
Public NotInheritable Class TempData
F#
[<AbstractClassAttribute>]
[<SealedAttribute>]
type TempData = class end
Name | Description | |
---|---|---|
CreateDirectory() | Creates temp directory and returns IDisposable to free it. | |
CreateDirectory(String) | Creates temp directory and returns IDisposable to free it. | |
CreateDirectory(String, String) | Creates temp directory and returns IDisposable to free it. | |
CreateFile() | Creates temp file and return disposable handle. | |
CreateFile(String) | Creates temp file and return disposable handle. | |
CreateFile(String, String) | Creates temp file and return disposable handle. | |
CreateFileStream() | Creates stream and returns disposable handler. | |
CreateFileStream(FileAccess) | Creates stream and returns disposable handler. | |
CreateFileStream(String, String, FileAccess) | Creates stream and returns disposable handler. | |
GetTempName() | Returns a random name for a temp file or directory. | |
GetTempName(String) | Returns a random name for a temp file or directory. |