Difference between revisions of "ObjectType:filelistentry"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 
== Description ==
 
== Description ==
 +
{{ObjectType-Vitals|filelistentry|[[LavishScript]]|none|Same as '''Filename'''|none|no|void *}}
 
Provides information about files in filelists.
 
Provides information about files in filelists.
 
== Members ==
 
== Members ==
*[[DataType:string|string]] '''Filename''': Name of the file
+
*[[ObjectType:string|string]] '''Filename''': Name of the file
*[[DataType:string|string]] '''FullPath''': Path+Filename of the file
+
*[[ObjectType:string|string]] '''FullPath''': Path+Filename of the file
*[[DataType:int|int]] '''Size''': Size in bytes of the file
+
*[[ObjectType:int|int]] '''Size''': Size in bytes of the file
*[[DataType:int64ptr|int64ptr]] '''CreationTime''': Win32 FILETIME (number of 100-nanosecond intervals since January 1, 1601) value representing the time of creation of this file
+
*[[ObjectType:int64ptr|int64ptr]] '''CreationTime''': Win32 FILETIME (number of 100-nanosecond intervals since January 1, 1601) value representing the time of creation of this file
*[[DataType:int64ptr|int64ptr]] '''LastWriteTime''': Win32 FILETIME (number of 100-nanosecond intervals since January 1, 1601) value representing the last time of modification of this file  
+
*[[ObjectType:int64ptr|int64ptr]] '''LastWriteTime''': Win32 FILETIME (number of 100-nanosecond intervals since January 1, 1601) value representing the last time of modification of this file  
*[[DataType:int64ptr|int64ptr]] '''LastAccessTime''': Win32 FILETIME (number of 100-nanosecond intervals since January 1, 1601) value representing the last time of acces of this file
+
*[[ObjectType:int64ptr|int64ptr]] '''LastAccessTime''': Win32 FILETIME (number of 100-nanosecond intervals since January 1, 1601) value representing the last time of acces of this file
  
  
  
 
== Methods ==
 
== Methods ==
 
== Returns ==
 
Same as '''Filename'''
 
  
 
== Examples ==
 
== Examples ==
See [[DataType:filelist|filelist]]
+
See [[ObjectType:filelist|filelist]]
 
 
 
 
== Operates On ==
 
<tt>_FileListEntry *</tt>
 
 
 
<small>This is an internal data type</small>
 
  
 
== See Also ==
 
== See Also ==
* [[DataType:filelist|filelist]]
+
* [[ObjectType:filelist|filelist]]
* [[LavishScript:Data Types|Data Types]]
+
{{LavishScript:ObjectType}}
 
 
[[Category:LavishScript]]
 
[[Category:LavishScript Data Types]]
 

Latest revision as of 16:39, 8 July 2018

Description

Object Type Vitals
filelistentry
Defined By LavishScript
Inherits none
Reduces To Same as Filename
Variable Object Type none
Uses Sub-Types no
C/C++ Type void *

Provides information about files in filelists.

Members

  • string Filename: Name of the file
  • string FullPath: Path+Filename of the file
  • int Size: Size in bytes of the file
  • int64ptr CreationTime: Win32 FILETIME (number of 100-nanosecond intervals since January 1, 1601) value representing the time of creation of this file
  • int64ptr LastWriteTime: Win32 FILETIME (number of 100-nanosecond intervals since January 1, 1601) value representing the last time of modification of this file
  • int64ptr LastAccessTime: Win32 FILETIME (number of 100-nanosecond intervals since January 1, 1601) value representing the last time of acces of this file


Methods

Examples

See filelist

See Also

LavishScript Object Types