Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.04 KB

File metadata and controls

50 lines (34 loc) · 1.04 KB

Import :

const FileSystemStats = brackets.getModule("filesystem/FileSystemStats")

FileSystemStats

Kind: global class

new FileSystemStats(options)

The FileSystemStats represents a particular FileSystemEntry's stats.

Param Type
options Object

isFile : boolean

Whether or not this is a stats object for a file

Kind: global variable

isDirectory : boolean

Whether or not this is a stats object for a directory

Kind: global variable

mtime : Date

Modification time for a file

Kind: global variable

size : Number

Size in bytes of a file

Kind: global variable

realPath : string

The canonical path of this file or directory ONLY if it is a symbolic link, and null otherwise.

Kind: global variable