从ftp服务器获取名为最年轻的%Y_%m_%d_%H_%M_%S文件的文件

时间:2014-05-15 17:36:39

标签: python ftp

我是python编程的新手,我面临很多问题。

我的想法是制作两个名为script 1和script2的脚本 第一个负责将%Y_%m_%d_%H_%M_%S.txt文件从服务器复制到特定目录,而第二个文件应该使用最年轻的%Y_%m_%d_%H_%M_%S.txt文件, 打开它并从该文件中获取数据以将其存储到数据库中,最后从服务器中删除该文件。

作为我的新手,我开始编写代码 问题是如何打开文件并创建一个名为old_file的变量来存储文件名 然后将此名称转换为稍后用于测试的字符串。

这就是我现在写的:

import os 

f = open ('%Y_%m_%d_%H_%M_%S')
filenamestr = str(f.name)
spli = filenamestr.split("_")
filenameint = int (spli[0]+spli[1]+spli[2]+spli[3]+spli[4]+spli[5])
print filenameint #this just for test

old_file = 'really idont know what i have to insert here'
if ((filenameint-old_file)>= 0):
    commands here
else:
    commands.
事先提前

laaroussi salah

0 个答案:

没有答案