是否有任何可能的方法来爬行web服务器目录并显示其中的文件?
我找到了一种列出本地磁盘目录中所有文件的方法。
以下是目录列表代码:
#!/usr/bin/perl
use strict;
use warnings;
my $dir = '/home/srikanth/Documents/';
opendir(DIR, $dir) or die $!;
while (my $file = readdir(DIR)) {
next if ($file =~ m/^\./);
print "$file\n";
}
closedir(DIR);
exit 0;
我想运行一个cron作业,直到当前系统日期与我的数据库表中名为“.Once”的数据库表中的"deadline( date )“列匹配。
我不确定cron作业是不是最好的方式,或者我可以使用触发器,或者可能是else.Also,我使用Apache作为我的web服务器,我的操作系统是windows vista。
我编写了一个简单的Python应用程序来度量某个事件的时间。一切都很好,但是在两种不同的操作系统上看起来完全不同,这让我有点头疼。我能做点什么为什么会发生这种事?我是说,最后,密码是一样的。
# str8.py
# Program to measure time from a certain event
from tkinter import *
from datetime import datetime
class FormatLabel(Label):
# A new type of Label widget that allows both text and textv