Constructors
				
					
					constructor
					
						- new File(uri: any): File
- new File(pathname: string): File
- new File(parent: string, child: string): File
- new File(parent: File, child: string): File
						- 
							
							Parameters
- 
							
							Parameters
- 
							
							Parameters
								- 
									parent: string
- 
									child: string
 
- 
							
							Parameters
Accessors
				
				
					
					Static pathSeparator
					
						- get pathSeparator(): string
Static pathSeparatorChar
					
						- get pathSeparatorChar(): string
Static separatorChar
					
						- get separatorChar(): string
Methods
				
				
				
				
					
					compareTo
					
						- compareTo(pathname: File): number
- compareTo(arg0: any): number
						- 
							
							ParametersReturns number
- 
							
							ParametersReturns number
getAbsolutePath
					
						- getAbsolutePath(): string
getCanonicalPath
					
						- getCanonicalPath(): string
list
					
					
						- 
							
							Returns Array<string>
- 
							
							ParametersReturns Array<string>
listFiles
					
					
						- 
							
							Returns Array<File>
- 
							
							ParametersReturns Array<File>
- 
							
							ParametersReturns Array<File>
renameTo
					
						- renameTo(dest: File): boolean
						- 
							
							ParametersReturns boolean
setExecutable
					
						- setExecutable(executable: boolean): boolean
- setExecutable(executable: boolean, ownerOnly: boolean): boolean
						- 
							
							ParametersReturns boolean
- 
							
							Parameters
								- 
									executable: boolean
- 
									ownerOnly: boolean
 Returns boolean
setLastModified
					
						- setLastModified(time: number): boolean
						- 
							
							ParametersReturns boolean
setReadable
					
						- setReadable(readable: boolean): boolean
- setReadable(readable: boolean, ownerOnly: boolean): boolean
						- 
							
							ParametersReturns boolean
- 
							
							Parameters
								- 
									readable: boolean
- 
									ownerOnly: boolean
 Returns boolean
setWritable
					
						- setWritable(writable: boolean): boolean
- setWritable(writable: boolean, ownerOnly: boolean): boolean
						- 
							
							ParametersReturns boolean
- 
							
							Parameters
								- 
									writable: boolean
- 
									ownerOnly: boolean
 Returns boolean
Static createTempFile
					
						- createTempFile(prefix: string, suffix: string): File
- createTempFile(prefix: string, suffix: string, directory: File): File
						- 
							
							Parameters
								- 
									prefix: string
- 
									suffix: string
 
- 
							
							Parameters
								- 
									prefix: string
- 
									suffix: string
- 
									directory: File