stat

    4熱度

    3回答

    在Perl中(在Windows上)如何確定目錄的上次修改時間? 注: opendir my($dirHandle), "$path"; my $modtime = (stat($dirHandle))[9]; 導致以下錯誤: The dirfd function is unimplemented at scriptName.pl line lineNumber.

    4熱度

    6回答

    我遍歷整個分區,stat()'每個文件,然後檢查mtime,size和uid的返回值與散列值。然而,Perl在Perl中速度太慢,我想知道是否有更快的替代方案可能忽略。

    3熱度

    1回答

    我是新來的。我有一個與PHP,FTP和CURL相關的問題。 我需要用CURL FTP來模擬PHP的stat()。我已經知道,這可能需要多個命令才能完成。這裏就是我有這麼遠(PHP/STAT ... FTP /捲曲): 開發 鮑 模式... LIST * NLINK UID .. 。LIST * GID ... LIST * rdev的 大小... SIZE(或者更好的是,從列表中使用) 的atim

    6熱度

    2回答

    我在使用os.utime正確設置mac上的修改時間(Mac OS X 10.6.2,從/usr/bin/python運行Python 2.6.1)時遇到問題。它與touch實用程序不一致,它與Finder的「獲取信息」窗口中顯示的屬性不一致。 考慮以下命令序列。純文本中的「創建」和「修改」時間是指查找器中「獲取信息」窗口中顯示的屬性。提醒一下,os.utime需要參數(filename, (ati

    2熱度

    1回答

    我試圖檢查一個文件是否有Python中的setuid位。 The stat doc提到S_ISUID函數,但它只適用於os.chmod(),而不是實際讀取setuid位。它還列出S_IMODE,但我不知道如何解釋它。 如何輕鬆檢查一個文件是否被設置爲setuid根位?

    1熱度

    2回答

    你知道爲什麼某些文件不被這個節目上市,即使他們是「正規」?: #include <stdio.h> #include <sys/types.h> #include <sys/param.h> #include <sys/stat.h> #include <dirent.h> int main(void) { DIR *dh = opendir("./"); // direct

    2熱度

    2回答

    如何使用C++在Kubuntu Linux中使用stat從sys/stat.h中獲取文件所有者的訪問權限? 目前,我得到的文件類型是這樣的: struct stat results; stat(filename, &results); cout << "File type: "; if (S_ISDIR(results.st_mode)) cout <<

    1熱度

    1回答

    stattest.c: // compile: gcc -o stattest stattest.c #include <stdio.h> #include <sys/stat.h> int main(int argc, char *argv[]) { struct stat stats; stat(argv[1], &stats); printf("%lli

    -2熱度

    1回答

    我在下面找到了一些示例腳本「stat」用法。 $source_mtime = (stat($source_file))[9]; $dest_file_mtime = (stat($dest_file))[9]; $script_mtime = (stat($this_file))[9]; if (-e $dest_xml_file) { if ($dest_file_mtime

    1熱度

    4回答

    在研究另一個問題時,我注意到Perl中的stat函數可以將dirhandle作爲其參數(而不是文件句柄或文件名)。 但是我找不到正確使用這個的任何示例 - Perl手冊中沒有任何示例。 任何人都可以展示如何使用它的例子嗎?