DIR : /home/kozerus/public_html/pn/uize/site-source/js/Uize/Services/FileSystem.js

/home/kozerus/public_html/pn/uize/site-source/js/Uize/Services

/*______________
|       ______  |   U I Z E    J A V A S C R I P T    F R A M E W O R K
|     /      /  |   ---------------------------------------------------
|    /    O /   |    MODULE : Uize.Services.FileSystem Class
|   /    / /    |
|  /    / /  /| |    ONLINE : http://www.uize.com
| /____/ /__/_| | COPYRIGHT : (c)2012-2016 UIZE
|          /___ |   LICENSE : Available under MIT License or GNU General Public License
|_______________|             http://www.uize.com/license.html
*/

/* Module Meta Data
	type: Class
	importance: 6
	codeCompleteness: 0
	docCompleteness: 2
*/

/*?
	Introduction
		The =Uize.Services.FileSystem= module defines a class for a file system service.

		*DEVELOPERS:* `Chris van Rensburg` & `Ben Ilegbodu`
*/

Uize.module ({
	name:'Uize.Services.FileSystem',
	superclass:'Uize.Service',
	builder:function (_superclass) {
		'use strict';

		var
			/*** Variables for Scruncher Optimization ***/
				_false = false,
				_true = true
		;

		return _superclass.subclass ({
			serviceMethods:{
				copyFile:{
					async:_false
					/*?
						Instance Methods
							copyFile
								.

								SYNTAX
								........................................
								fileSystemInstance.copyFile (paramsOBJ);
								........................................

								Params
									path
										.

									targetPath
										.
					*/
				},

				deleteFile:{
					async:_false
					/*?
						Instance Methods
							deleteFile
								.

								SYNTAX
								..........................................
								fileSystemInstance.deleteFile (paramsOBJ);
								..........................................

								Params
									path
										.
					*/
				},

				deleteFolder:{
					async:_false
					/*?
						Instance Methods
							deleteFolder
								.

								SYNTAX
								..........................................
								fileSystemInstance.deleteFolder (paramsOBJ);
								..........................................

								Params
									path
										.
					*/
				},

				fileExists:{
					async:_false
					/*?
						Instance Methods
							fileExists
								.

								SYNTAX
								...........................................................
								fileExistsBOOL = fileSystemInstance.fileExists (paramsOBJ);
								...........................................................

								Params
									path
										.
					*/
				},

				folderExists:{
					async:_false
					/*?
						Instance Methods
							folderExists
								.

								SYNTAX
								...............................................................
								folderExistsBOOL = fileSystemInstance.folderExists (paramsOBJ);
								...............................................................

								Params
									path
										.
					*/
				},

				getFiles:{
					async:_false
					/*?
						Instance Methods
							getFiles
								.

								SYNTAX
								.........................................................
								filePathsARRAY = fileSystemInstance.getFiles (paramsOBJ);
								.........................................................

								Params
									path
										.

									pathMatcher
										.

									pathTransformer
										.

									recursive
										.
					*/
				},

				getFolders:{
					async:_false
					/*?
						Instance Methods
							getFolders
								.

								SYNTAX
								...........................................................
								filePathsARRAY = fileSystemInstance.getFolders (paramsOBJ);
								...........................................................

								Params
									path
										.

									pathMatcher
										.

									pathTransformer
										.
					*/
				},

				getModifiedDate:{
					async:_false
					/*?
						Instance Methods
							getModifiedDate
								.

								SYNTAX
								.................................................................
								modifiedDateOBJ = fileSystemInstance.getModifiedDate (paramsOBJ);
								.................................................................

								Params
									path
										.
					*/
				},

				makeFolder:{
					async:_false
					/*?
						Instance Methods
							makeFolder
								.

								SYNTAX
								..........................................
								fileSystemInstance.makeFolder (paramsOBJ);
								..........................................

								Params
									path
										.
					*/
				},

				moveFile:{
					async:_false
					/*?
						Instance Methods
							moveFile
								.

								SYNTAX
								..........................................................
								fileContentsSTR = fileSystemInstance.moveFile (paramsOBJ);
								..........................................................

								Params
									path
										.
					*/
				},

				readFile:{
					async:_false
					/*?
						Instance Methods
							readFile
								.

								SYNTAX
								..........................................................
								fileContentsSTR = fileSystemInstance.readFile (paramsOBJ);
								..........................................................

								Params
									path
										.
					*/
				},

				pathExists:{
					async:_false
					/*?
						Instance Methods
							pathExists
								.

								SYNTAX
								...........................................................
								pathExistsBOOL = fileSystemInstance.pathExists (paramsOBJ);
								...........................................................

								Params
									path
										.
					*/
				},

				writeFile:{
					async:_false
					/*?
						Instance Methods
							writeFile
								.

								SYNTAX
								.........................................
								fileSystemInstance.writeFile (paramsOBJ);
								.........................................

								Params
									path
										.

									contents
										.
					*/
				},

				init:{
					async:_false
					/*?
						Instance Methods
							init
								.
					*/
				}
			}
		});
	}
});

//


koh5_pano



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer