यहां एक पायथन 3 स्क्रिप्ट है जो वीएमएस की तरह ऑटो फाइल वर्जनिंग करती है, जिसे सहेजने के समय मूल फाइल नाम से जोड़कर स्टांप लगाया जाता है।
मैंने स्क्रिप्ट में कमेंट्री का एक समूह रखा है और अपनी ubuntu मशीन पर आधा दर्जन ऐसी स्क्रिप्ट चला रहा हूँ, जिसमें केवल निर्देशिका ही स्क्रिप्ट के प्रत्येक भिन्न संस्करण में अलग-अलग होती है ताकि मैं एक साथ कई निर्देशिकाओं का संस्करण तैयार कर सकूँ। मशीनों के प्रदर्शन पर कोई वास्तविक जुर्माना नहीं।
/ usr / bin / env python3
प्रिंट करें ("PROJECT FILES VERSIONING STARTED") प्रिंट करें ("version_creation.py") #place इस नाम की स्क्रिप्ट के सभी कोड को प्रिंट करें ("कमांड के रूप में चलाएं .. 'python3 version_creation.py') प्रिंट (" ctrl ') c 'to stop ") प्रिंट (" ") प्रिंट (" कमांड लाइन के नीचे पृष्ठभूमि प्रकार में प्रोग्राम चलाने के लिए और फिर विंडो बंद करें। ") प्रिंट (" nohup python3 version_creation.py ") प्रिंट (" .... " स्टॉप प्रोसेस गो मेन्यू / एडमिनिस्ट्रेशन / सिस्टम मॉनीटर ... और पाइथन 3 को मारें ") प्रिंट (" ") प्रिंट (" फाइल को हमेशा 'प्रोजेक्टफाइल्स' डायरेक्टरी और वर्जन फाइल्स को सेव करें ") प्रिंट (" भी उस डायरेक्टरी में बनेगा ") ") प्रिंट (" ") प्रिंट (" ") प्रिंट (" ") प्रिंट (" ")
आयात शील आयात os आयात समय
--- नीचे नई फ़ाइलों (सेकंड में) की जाँच करने के लिए समय अंतराल सेट करें
- यह अंतराल अंतराल से छोटी होनी चाहिए नई फाइलें दिखाई देती हैं!
टी = १०
--- स्रोत निर्देशिका (dr1) और लक्ष्य निर्देशिका (dr2) सेट करें
dr1 = "/ पथ / से / source_directory"
dr2 = "/ पथ / से / target_directory"
आयात glob आयात os
dr1 = "/ home / michael / ProjectFiles" # मूल और संस्करणों को इस निर्देशिका में सहेजा जाएगा
dr2 = "/ होम / माइकेल / प्रोजेक्ट फ़िलेवीर्स"
जबकि सच:
if os.listdir(dr1) == []:
प्रिंट ("खाली")
n = 100
else:
list_of_files = glob.glob(dr1+'/*') # * means all if need specific format then *.csv
latest_file_path = max(list_of_files, key=os.path.getctime)
प्रिंट करें ("1 नवीनतम_फाइल_पथ =", नवीनतम_फाइल_पैथ)
originalname = latest_file_path.split('/')[-1]
प्रिंट ("2 ओरिजिनल =", ओरिजिनल)
filecreation = (os.path.getmtime(latest_file_path))
प्रिंट ("फ़ाइलक्रीशन =", फ़ाइलक्रीट)
now = time.time()
fivesec_ago = now - 5 # Number of seconds
प्रिंट ("fivesec_ago =", fivesec_ago)
timedif = fivesec_ago - filecreation #time between file creation
प्रिंट ("समयसीमा =", समयसीमा)
if timedif <= 5: #if file created less than 5 seconds ago
nameroot = originalname.split(".")[-0]
print ("3 nameroot= ", nameroot)
extension = os.path.splitext(originalname)[1][1:]
print ("4 extension = ", extension)
curdatetime = time.strftime('%Y%m%d-%H%M%S')
print ("5 curdatetime = ", curdatetime)
newassembledname = (nameroot + "_" + curdatetime + "." + extension)
print ("6 newassembledname = ", newassembledname)
source = dr1+"/"+originalname
print ("7 source = ", source)
target = dr1+"/"+newassembledname
print ("8 target = ", target)
shutil.copy(source, target)
time.sleep(t)
शेयर
नीचे पहले रखा गया था और काम करता है लेकिन मुझे उपरोक्त अजगर की स्क्रिप्ट बहुत अच्छी लगती है ...... (3 साल से अजगर का उपयोग कर रहा है)
#!/usr/bin/env python3
print ("PROJECT FILES VERSIONING STARTED")
print ("projectfileversioning.py")
print ("run as.. 'python3 projectfileversioning.py' from command line")
print ("ctrl 'c' to stop")
print (" ")
print ("To run program in background type below to command line and then close the window. ")
print ("nohup python3 projectfileversioning.py")
print ("....to stop process go menu/administration/system monitor... and kill python")
print (" ")
print ("Always save files to the 'ProjectFiles' directory and the file ")
print (" will be redirected to the ProjectFileVersions where")
print (" time stamped versions will also be created.")
print (" ")
print ("If you like you may then copy/move the versioned and original file from 'ProjectFileVersions' to ")
print ("any other directory you like.")
import shutil
import os
import time
#--- set the time interval to check for new files (in seconds) below
#- this interval should be smaller than the interval new files appear!
t = 10
#--- set the source directory (dr1) and target directory (dr2)
#dr1 = "/path/to/source_directory"
#dr2 = "/path/to/target_directory"
import glob
import os
dr1 = "/home/michael/ProjectFiles"
dr2 = "/home/michael/ProjectFileVersions"
while True:
if os.listdir(dr1) == []:
n = 100
else:
list_of_files = glob.glob(dr1+'/*') # * means all if need specific format then *.csv
latest_file_path = max(list_of_files, key=os.path.getctime)
print ("1 Latest_file_path = ", latest_file_path)
originalname = latest_file_path.split('/')[-1]
print ("2 originalname = ", originalname)
nameroot = originalname.split(".")[-0]
print ("3 nameroot= ", nameroot)
extension = os.path.splitext(originalname)[1][1:]
print ("4 extension = ", extension)
curdatetime = time.strftime('%Y%m%d-%H%M%S')
print ("5 curdatetime = ", curdatetime)
newassembledname = (nameroot + "_" + curdatetime + "." + extension)
print ("6 newassembledname = ", newassembledname)
source = dr1+"/"+originalname
print ("7 source = ", source)
target = dr2+"/"+originalname
print ("8 target = ", target)
shutil.copy(source, target)
source = dr1+"/"+originalname
print ("9 source = ", source)
target = dr2+"/"+newassembledname
print ("10 target = ", target)
shutil.move(source, target)
time.sleep(t)
#share