Objects
DateTimeObject
A DateTimeObject is used to store information about a given DateTime. It stores the raw DateTime value as well as a DateTime format.
Property | Type | Description |
---|---|---|
Date | Stores the Date part of the DateTime | |
Time | Stores the Time part of the DateTime | |
Day | Int32 | The Day of the month in the DateTime instance |
DayOfTheYear | Int32 | The Day of the Year in the DateTime instance |
Month | Int32 | The Month in the DateTime instance |
Year | Int32 | The Year in the DateTime instance |
Hour | Int32 | The Hour in the DateTime instance |
Minute | Int32 | The Minute in the DateTime instance |
Second | Int32 | The Secondin the DateTime instance |
MilliSecond | Int32 | The Milliseond in the DateTime instance |
Value | String | The raw DateTime value as string |
Format | String | The given DateTime format |
FormattedDate | String | The DateTime Value converted using the Format |
DateTimeInstance | The raw DateTime instance |
DateObject
A DateObject is used to store information about a given Date.
Property | Type | Description |
---|---|---|
Day | Int32 | The Day of the month in the DateTime instance |
DayOfWeek | Int32 | The Day of the Week in the DateTime instance |
Month | Int32 | The Month in the DateTime instance |
Year | Int32 | The Year in the DateTime instance |
Value | String | The raw DateTime value as string |
DateTimeInstance | The raw DateTime instance |
FileObject
A FileObject is used to store information about a given file.
Property | Type | Description |
---|---|---|
DoesNotExist | Bool | Indicates if the file does not exist. |
Exists | Bool | Indicates if the file exists. |
Extension | String | Stores the extension of the file. |
FileName | string | Stores the name of the file. |
FileNameWithoutExt | string | Indicates the name of the file without extension. |
Parent | string | Stores the parent folder path of the file. |
LastModified | string | Indicates the LastModified DateTime of the file. |
Created | string | Indicates the Created DateTime of the file. |
FileSize | Int32 | Stores the file size of the file. |
Value | String | The full path of the file. |
FolderObject
A FolderObject is used to store information about a given folder.
Property | Type | Description |
---|---|---|
DoesNotExist | Bool | Indicates if the folder does not exist. |
Exists | Bool | Indicates if the folder exists. |
FolderName | string | Stores the name of the folder. |
Parent | string | Stores the parent folder path of the folder. |
LastModified | string | Indicates the LastModified DateTime of the folder. |
Created | string | Indicates the Created DateTime of the folder. |
FilesCount | Int32 | Stores the total file count in the folder |
SubFoldersCount | Int32 | Stores the total subfolder count in the folder. |
Value | String | The full path of the folder. |
IsEmpty | Bool | Indicates if the folder is empty. |
IsNotEmpty | Bool | Indicates if the folder is not empty. |
ProcessObject
A ProcessObject is used to store information about a given process.
Property | Type | Description |
---|---|---|
NotRunning | Bool | Indicates if the process is not running. |
Running | Bool | Indicates if the process is running. |
Value | String | The name of the process. |
ApplicationObject
An ApplicationObject is used to store information about a given application.
Property | Type | Description |
---|---|---|
NotRunning | Bool | Indicates if the application is not running. |
Running | Bool | Indicates if the application is running. |
Value | String | The name of the application. |
ListObject
An ListObject is used to store a list of values.
Property | Type | Description |
---|---|---|
Capacity | Int32 | Gets or sets the total number of elements the internal data structure can hold without resizing. |
Count | Int32 | Gets the number of elements contained in the List<T>. |
Item | Int32 | Gets or sets the element at the specified index. |
Last updated