Wiki page file changed with summary [] by Lauro Moura

This commit is contained in:
Lauro Moura 2015-12-10 20:43:22 -08:00 committed by apache
parent bd70d244cc
commit 5646535e56
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
**DRAFT**
The File module provides a large number of functions to work with file, directories and downloads.
The File module provides a large number of functions to work with files, directories and downloads.
==== Constants ====
@ -61,7 +61,7 @@ Return type
* object - An object wrapping the new monitor.
* null - If it was not possible to create the monitor.
This function monitors path. If path is ''null'', or is an empty string, or none of the notify methods (Inotify, Windows notification or polling) is available, or if path does not exist the function returns ''null''. Otherwise, it returns a newly allocated ''Monitor'' object and the monitoring begins. When one of the ''efl.Ecore.File.EVENT_*'' events is notified, callback is called. Call ''del()'' on the monitor object to stop the monitoring.
This function monitors path. If path is ''null'', or is an empty string, or none of the notify methods (Inotify, Windows notification or polling) is available, or if the path does not exist the function returns ''null''. Otherwise, it returns a newly allocated ''Monitor'' object and the monitoring begins. When one of the ''efl.Ecore.File.EVENT_*'' events is notified, the callback is called. Call ''del()'' on the monitor object to stop the monitoring.
=== availableDownloadProtocol(protocol) ===
@ -79,7 +79,7 @@ Return type
* boolean - Whether the protocol is available or not.
This function returns ''true'' if protocol is supported, ''false'' otherwise. protocol can be 'http://', 'ftp://' or 'file://'. Ecore.File must be compiled with CURL to handle http and ftp protocols.
This function returns ''true'' if protocol is supported, ''false'' otherwise. protocol can be ''http://'', ''ftp://'' or ''file:/\/ ''. Ecore.File must be compiled with CURL to handle http and ftp protocols.
=== canExec() ===