Python Script To Change Name of A File To Its Timestamp - GeeksforGeeks
Python Script To Change Name of A File To Its Timestamp - GeeksforGeeks
In this article, we will learn how to obtain the date of creation of a file and would use that to create an ISO
8601 timestamp. Which would be used to name the file.
Functions Used:
• os.path.getctime(): os.path.getctime() method in Python is used to get system’s ctime of the specified
path. Here ctime refers to the last metadata change for specified path in UNIX while in Windows, it refers
to path creation time.
• time.strptime(): It is used to convert the string object to time object.
• time.strftime(): time.strftime(format[, t]) function convert a tuprl or struct_time representing a time
as returned by gmtime() or localtime() to a string as specified by the format argument.
If t is not provided, the current time as returned by localtime() is used. The format must be a string.
• os.rename(): os.rename() method in Python is used to rename a file or directory.
This method renames a source file/ directory to specified destination file/directory.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and Got It !
Python3 understood our Cookie Policy & Privacy Policy
import time
import os
# Getting the path of the file
f_path = "/location/to/gfg.png"
# Obtaining the creation time (in seconds)
# of the file/folder (datatype=int)
t = os.path.getctime(f_path)
# Converting the time to an epoch string
# (the output timestamp string would
# be recognizable by strptime() without
# format quantifers)
t_str = time.ctime(t)
# Converting the string to a time object
t_obj = time.strptime(t_str)
# Transforming the time object to a timestamp
# of ISO 8601 format
form_t = time.strftime("%Y-%m-%d %H:%M:%S", t_obj)
# Since colon is an invalid character for a
# Windows file name Replacing colon with a
# similar looking symbol found in unicode
# Modified Letter Colon " " (U+A789)
form_t = form_t.replace(":", "꞉")
# Renaming the filename to its timestamp
os.rename(
f_path, os.path.split(f_path)[0] + '/' + form_t + os.path.splitext(f_path)[1])
• This code is for Windows OS. For Operating systems other than windows, the users can omit the form_t =
form_t.replace(“:”, “꞉”) statement, as it is only required in windows as the OS doesn’t allow a colon as a
filename. For use in other OS, the last statement (os.rename()) should also be modified accordingly.
• The argument to strftime(), “%Y-%m-%d %H:%M:%S” is a format specifier. This is used to guide the
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and
output of strftime(). This format specifier could be changed in order to the syntax of other
understood our Cookie Policy & Privacy Policy
timestamp
Got It !
standards.
• os.path.split(f_path)[0] in the last statement is for getting the path to the root (parent directory) of the
file.
• os.path.splitext(f_path)[1] is for adding the file extension (if any) of the original file to the timestamp
Like 0
Previous Next
Article Contributed By :
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and Got It !
understood our Cookie Policy & Privacy Policy
VasuDev4
@VasuDev4
Vote for di�culty
Writing code in comment? Please use ide.geeksforgeeks.org, generate link and share the link here.
Load Comments
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and Got It !
understood our Cookie Policy & Privacy Policy
5th Floor, A-118,
Sector-136, Noida, Uttar Pradesh - 201305
Company Learn
About Us Algorithms
News Languages
Python
Top News
Java
Technology
CPP
Work & Career
Golang
Business
C#
Finance
SQL
Lifestyle
JavaScript Internships
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and Got It !
understood our Cookie Policy & Privacy Policy