aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/file
diff options
context:
space:
mode:
authorGravatar Fabio Bas2010-12-21 08:11:52 +0000
committerGravatar Fabio Bas2010-12-21 08:11:52 +0000
commit571f1237d093dc26f9debffa1e399dd241ae68db (patch)
treeb3ae76ab1cdf0c53fca2c26659136ad73e505283 /src/modules/file
parentupdated italian translation (diff)
downloadKVIrc-571f1237d093dc26f9debffa1e399dd241ae68db.tar.gz
KVIrc-571f1237d093dc26f9debffa1e399dd241ae68db.tar.bz2
KVIrc-571f1237d093dc26f9debffa1e399dd241ae68db.zip
documentation fixes on file module by OmegaPhil
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5215 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/file')
-rw-r--r--src/modules/file/libkvifile.cpp20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/modules/file/libkvifile.cpp b/src/modules/file/libkvifile.cpp
index 7add9a938..c235d79c5 100644
--- a/src/modules/file/libkvifile.cpp
+++ b/src/modules/file/libkvifile.cpp
@@ -484,12 +484,19 @@ static bool file_kvs_cmd_rmdir(KviKvsModuleCommandCall * c)
@title:
$file.exists
@short:
- Check if a file exists
+ Check if a file or directory exists
@syntax:
- <boolean> $file.exists(<filename:string>)
+ <boolean> $file.exists(<file or directory path:string>)
@description:
- Returns true if the file <filename> exists (this is also valid for directories!).[br]
- The <filename> should be an unix-style file path and is adjusted according to the system that KVIrc is running on.[br]
+ Returns true if the specified file or directory exists.[br]
+ The path should be given in UNIX-style and is adjusted according to the system that KVIrc is running on.[br]
+ @examples:
+ [example]
+ # Windows
+ echo $file.exists(c:/windows/notepad.exe);
+ # Linux, other unixes
+ echo $file.exists(/etc/passwd);
+ [/example]
*/
static bool file_kvs_fnc_exists(KviKvsModuleFunctionCall * c)
{
@@ -566,11 +573,12 @@ static bool file_kvs_fnc_size(KviKvsModuleFunctionCall * c)
@title:
$file.allSizes
@short:
- Returns all sizes of a specified directory.
+ Returns the size of each file in a specified directory.
@syntax:
<array> $file.allSize(<dirname:string>)
@description:
- Returns the size of every files of the specified directory as an array.[br]
+ Returns the size of each file in a specified directory as an array.[br]
+ This function is not recursive: it wont return the size of files in subdirectories of <dirname>.
*/
static bool file_kvs_fnc_allSizes(KviKvsModuleFunctionCall * c)
{