Finding the latest file in a folder
$begingroup$
I'm a bit new to Python and sort of learning on my own. I wrote a small function to help me find the latest file in a directory. Taking a step back, it reads a bit janky and I was curious what steps or what resources I could look into to help me make this more friendly. Should I be returning False
? Or 0
?
Inside my example/files directory are 3 files which were, for this example, created on the dates specified in the file name:
example/files/randomtext011.201602012.txt
example/files/randomtext011.201602011.txt
example/files/randomtext011.201602013.txt
import os.path
import glob
import datetime
dir = 'example/files'
file_pattern = 'randomtext011.*.txt'
def get_latest_file(file_pattern,path=None):
if path is None:
list_of_files = glob.glob('{0}'.format(file_pattern))
if len(list_of_files)> 0:
return os.path.split(max(list_of_files, key = os.path.getctime))[1]
else:
list_of_files = glob.glob('{0}/{1}'.format(path, file_pattern))
if len(list_of_files) > 0:
return os.path.split(max(list_of_files,key=os.path.getctime))[1]
return False
python file-system
$endgroup$
add a comment |
$begingroup$
I'm a bit new to Python and sort of learning on my own. I wrote a small function to help me find the latest file in a directory. Taking a step back, it reads a bit janky and I was curious what steps or what resources I could look into to help me make this more friendly. Should I be returning False
? Or 0
?
Inside my example/files directory are 3 files which were, for this example, created on the dates specified in the file name:
example/files/randomtext011.201602012.txt
example/files/randomtext011.201602011.txt
example/files/randomtext011.201602013.txt
import os.path
import glob
import datetime
dir = 'example/files'
file_pattern = 'randomtext011.*.txt'
def get_latest_file(file_pattern,path=None):
if path is None:
list_of_files = glob.glob('{0}'.format(file_pattern))
if len(list_of_files)> 0:
return os.path.split(max(list_of_files, key = os.path.getctime))[1]
else:
list_of_files = glob.glob('{0}/{1}'.format(path, file_pattern))
if len(list_of_files) > 0:
return os.path.split(max(list_of_files,key=os.path.getctime))[1]
return False
python file-system
$endgroup$
add a comment |
$begingroup$
I'm a bit new to Python and sort of learning on my own. I wrote a small function to help me find the latest file in a directory. Taking a step back, it reads a bit janky and I was curious what steps or what resources I could look into to help me make this more friendly. Should I be returning False
? Or 0
?
Inside my example/files directory are 3 files which were, for this example, created on the dates specified in the file name:
example/files/randomtext011.201602012.txt
example/files/randomtext011.201602011.txt
example/files/randomtext011.201602013.txt
import os.path
import glob
import datetime
dir = 'example/files'
file_pattern = 'randomtext011.*.txt'
def get_latest_file(file_pattern,path=None):
if path is None:
list_of_files = glob.glob('{0}'.format(file_pattern))
if len(list_of_files)> 0:
return os.path.split(max(list_of_files, key = os.path.getctime))[1]
else:
list_of_files = glob.glob('{0}/{1}'.format(path, file_pattern))
if len(list_of_files) > 0:
return os.path.split(max(list_of_files,key=os.path.getctime))[1]
return False
python file-system
$endgroup$
I'm a bit new to Python and sort of learning on my own. I wrote a small function to help me find the latest file in a directory. Taking a step back, it reads a bit janky and I was curious what steps or what resources I could look into to help me make this more friendly. Should I be returning False
? Or 0
?
Inside my example/files directory are 3 files which were, for this example, created on the dates specified in the file name:
example/files/randomtext011.201602012.txt
example/files/randomtext011.201602011.txt
example/files/randomtext011.201602013.txt
import os.path
import glob
import datetime
dir = 'example/files'
file_pattern = 'randomtext011.*.txt'
def get_latest_file(file_pattern,path=None):
if path is None:
list_of_files = glob.glob('{0}'.format(file_pattern))
if len(list_of_files)> 0:
return os.path.split(max(list_of_files, key = os.path.getctime))[1]
else:
list_of_files = glob.glob('{0}/{1}'.format(path, file_pattern))
if len(list_of_files) > 0:
return os.path.split(max(list_of_files,key=os.path.getctime))[1]
return False
python file-system
python file-system
edited Feb 19 '16 at 6:41
200_success
130k17154419
130k17154419
asked Feb 19 '16 at 4:29
pyNovice89pyNovice89
18115
18115
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
First of all, I think that your variable names are quite good.
Should I be returning False? Or 0?
I would recommend None
Don't repeat yourself
As you can see, the two branches of your if
else
are very similar.
Instead you could do a
if path is None:
fullpath = file_pattern
else:
fullpath = path + '/' + file_pattern
But joining paths like this is not very pythonic (and might cause problems on windows).
Instead, fullpath = os.path.join(path, file_pattern)
is what you are looking for.
About the arguments
You can take inspiration of the os.path.join even further and change the order of your arguments (and completely remove the branching):
def get_latest_file(path, *paths):
fullpath = os.path.join(path, paths)
...
get_latest_file('example', 'files','randomtext011.*.txt')
Use docstrings
And then you might think that the way to call it is not trivial and want to document it: let's use a docstring !
def get_latest_file(path, *paths):
"""Returns the name of the latest (most recent) file
of the joined path(s)"""
fullpath = os.path.join(path, *paths)
Miscellaneous
If you use Python 3, you can use iglob instead.
For the os.path.split
, I prefer using it like this (instead of the 1
index):
folder, filename = os.path.split(latest_file)
The import datetime
is not used.
Instead of if len(list_of_files)> 0:
, you can simply do if list_of_files:
Revised code
def get_latest_file(path, *paths):
"""Returns the name of the latest (most recent) file
of the joined path(s)"""
fullpath = os.path.join(path, *paths)
list_of_files = glob.glob(fullpath) # You may use iglob in Python3
if not list_of_files: # I prefer using the negation
return None # because it behaves like a shortcut
latest_file = max(list_of_files, key=os.path.getctime)
_, filename = os.path.split(latest_file)
return filename
$endgroup$
$begingroup$
Thanks oliverpool! Your response is really helpful and definitely gives me a number of next steps to look into.
$endgroup$
– pyNovice89
Feb 19 '16 at 15:52
add a comment |
$begingroup$
Consider you has the directories in a particular path, then we need the simple code like as shown in below.
files = os.listdir(path)
latest_file = files[0]
for key in files:
if os.path.getctime(path+key) > os.path.getctime(path + latest_file):
latest = key
print(latest)```
New contributor
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
});
});
}, "mathjax-editing");
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "196"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f120494%2ffinding-the-latest-file-in-a-folder%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
First of all, I think that your variable names are quite good.
Should I be returning False? Or 0?
I would recommend None
Don't repeat yourself
As you can see, the two branches of your if
else
are very similar.
Instead you could do a
if path is None:
fullpath = file_pattern
else:
fullpath = path + '/' + file_pattern
But joining paths like this is not very pythonic (and might cause problems on windows).
Instead, fullpath = os.path.join(path, file_pattern)
is what you are looking for.
About the arguments
You can take inspiration of the os.path.join even further and change the order of your arguments (and completely remove the branching):
def get_latest_file(path, *paths):
fullpath = os.path.join(path, paths)
...
get_latest_file('example', 'files','randomtext011.*.txt')
Use docstrings
And then you might think that the way to call it is not trivial and want to document it: let's use a docstring !
def get_latest_file(path, *paths):
"""Returns the name of the latest (most recent) file
of the joined path(s)"""
fullpath = os.path.join(path, *paths)
Miscellaneous
If you use Python 3, you can use iglob instead.
For the os.path.split
, I prefer using it like this (instead of the 1
index):
folder, filename = os.path.split(latest_file)
The import datetime
is not used.
Instead of if len(list_of_files)> 0:
, you can simply do if list_of_files:
Revised code
def get_latest_file(path, *paths):
"""Returns the name of the latest (most recent) file
of the joined path(s)"""
fullpath = os.path.join(path, *paths)
list_of_files = glob.glob(fullpath) # You may use iglob in Python3
if not list_of_files: # I prefer using the negation
return None # because it behaves like a shortcut
latest_file = max(list_of_files, key=os.path.getctime)
_, filename = os.path.split(latest_file)
return filename
$endgroup$
$begingroup$
Thanks oliverpool! Your response is really helpful and definitely gives me a number of next steps to look into.
$endgroup$
– pyNovice89
Feb 19 '16 at 15:52
add a comment |
$begingroup$
First of all, I think that your variable names are quite good.
Should I be returning False? Or 0?
I would recommend None
Don't repeat yourself
As you can see, the two branches of your if
else
are very similar.
Instead you could do a
if path is None:
fullpath = file_pattern
else:
fullpath = path + '/' + file_pattern
But joining paths like this is not very pythonic (and might cause problems on windows).
Instead, fullpath = os.path.join(path, file_pattern)
is what you are looking for.
About the arguments
You can take inspiration of the os.path.join even further and change the order of your arguments (and completely remove the branching):
def get_latest_file(path, *paths):
fullpath = os.path.join(path, paths)
...
get_latest_file('example', 'files','randomtext011.*.txt')
Use docstrings
And then you might think that the way to call it is not trivial and want to document it: let's use a docstring !
def get_latest_file(path, *paths):
"""Returns the name of the latest (most recent) file
of the joined path(s)"""
fullpath = os.path.join(path, *paths)
Miscellaneous
If you use Python 3, you can use iglob instead.
For the os.path.split
, I prefer using it like this (instead of the 1
index):
folder, filename = os.path.split(latest_file)
The import datetime
is not used.
Instead of if len(list_of_files)> 0:
, you can simply do if list_of_files:
Revised code
def get_latest_file(path, *paths):
"""Returns the name of the latest (most recent) file
of the joined path(s)"""
fullpath = os.path.join(path, *paths)
list_of_files = glob.glob(fullpath) # You may use iglob in Python3
if not list_of_files: # I prefer using the negation
return None # because it behaves like a shortcut
latest_file = max(list_of_files, key=os.path.getctime)
_, filename = os.path.split(latest_file)
return filename
$endgroup$
$begingroup$
Thanks oliverpool! Your response is really helpful and definitely gives me a number of next steps to look into.
$endgroup$
– pyNovice89
Feb 19 '16 at 15:52
add a comment |
$begingroup$
First of all, I think that your variable names are quite good.
Should I be returning False? Or 0?
I would recommend None
Don't repeat yourself
As you can see, the two branches of your if
else
are very similar.
Instead you could do a
if path is None:
fullpath = file_pattern
else:
fullpath = path + '/' + file_pattern
But joining paths like this is not very pythonic (and might cause problems on windows).
Instead, fullpath = os.path.join(path, file_pattern)
is what you are looking for.
About the arguments
You can take inspiration of the os.path.join even further and change the order of your arguments (and completely remove the branching):
def get_latest_file(path, *paths):
fullpath = os.path.join(path, paths)
...
get_latest_file('example', 'files','randomtext011.*.txt')
Use docstrings
And then you might think that the way to call it is not trivial and want to document it: let's use a docstring !
def get_latest_file(path, *paths):
"""Returns the name of the latest (most recent) file
of the joined path(s)"""
fullpath = os.path.join(path, *paths)
Miscellaneous
If you use Python 3, you can use iglob instead.
For the os.path.split
, I prefer using it like this (instead of the 1
index):
folder, filename = os.path.split(latest_file)
The import datetime
is not used.
Instead of if len(list_of_files)> 0:
, you can simply do if list_of_files:
Revised code
def get_latest_file(path, *paths):
"""Returns the name of the latest (most recent) file
of the joined path(s)"""
fullpath = os.path.join(path, *paths)
list_of_files = glob.glob(fullpath) # You may use iglob in Python3
if not list_of_files: # I prefer using the negation
return None # because it behaves like a shortcut
latest_file = max(list_of_files, key=os.path.getctime)
_, filename = os.path.split(latest_file)
return filename
$endgroup$
First of all, I think that your variable names are quite good.
Should I be returning False? Or 0?
I would recommend None
Don't repeat yourself
As you can see, the two branches of your if
else
are very similar.
Instead you could do a
if path is None:
fullpath = file_pattern
else:
fullpath = path + '/' + file_pattern
But joining paths like this is not very pythonic (and might cause problems on windows).
Instead, fullpath = os.path.join(path, file_pattern)
is what you are looking for.
About the arguments
You can take inspiration of the os.path.join even further and change the order of your arguments (and completely remove the branching):
def get_latest_file(path, *paths):
fullpath = os.path.join(path, paths)
...
get_latest_file('example', 'files','randomtext011.*.txt')
Use docstrings
And then you might think that the way to call it is not trivial and want to document it: let's use a docstring !
def get_latest_file(path, *paths):
"""Returns the name of the latest (most recent) file
of the joined path(s)"""
fullpath = os.path.join(path, *paths)
Miscellaneous
If you use Python 3, you can use iglob instead.
For the os.path.split
, I prefer using it like this (instead of the 1
index):
folder, filename = os.path.split(latest_file)
The import datetime
is not used.
Instead of if len(list_of_files)> 0:
, you can simply do if list_of_files:
Revised code
def get_latest_file(path, *paths):
"""Returns the name of the latest (most recent) file
of the joined path(s)"""
fullpath = os.path.join(path, *paths)
list_of_files = glob.glob(fullpath) # You may use iglob in Python3
if not list_of_files: # I prefer using the negation
return None # because it behaves like a shortcut
latest_file = max(list_of_files, key=os.path.getctime)
_, filename = os.path.split(latest_file)
return filename
edited Feb 19 '16 at 12:45
answered Feb 19 '16 at 7:55
oliverpoololiverpool
1,592425
1,592425
$begingroup$
Thanks oliverpool! Your response is really helpful and definitely gives me a number of next steps to look into.
$endgroup$
– pyNovice89
Feb 19 '16 at 15:52
add a comment |
$begingroup$
Thanks oliverpool! Your response is really helpful and definitely gives me a number of next steps to look into.
$endgroup$
– pyNovice89
Feb 19 '16 at 15:52
$begingroup$
Thanks oliverpool! Your response is really helpful and definitely gives me a number of next steps to look into.
$endgroup$
– pyNovice89
Feb 19 '16 at 15:52
$begingroup$
Thanks oliverpool! Your response is really helpful and definitely gives me a number of next steps to look into.
$endgroup$
– pyNovice89
Feb 19 '16 at 15:52
add a comment |
$begingroup$
Consider you has the directories in a particular path, then we need the simple code like as shown in below.
files = os.listdir(path)
latest_file = files[0]
for key in files:
if os.path.getctime(path+key) > os.path.getctime(path + latest_file):
latest = key
print(latest)```
New contributor
$endgroup$
add a comment |
$begingroup$
Consider you has the directories in a particular path, then we need the simple code like as shown in below.
files = os.listdir(path)
latest_file = files[0]
for key in files:
if os.path.getctime(path+key) > os.path.getctime(path + latest_file):
latest = key
print(latest)```
New contributor
$endgroup$
add a comment |
$begingroup$
Consider you has the directories in a particular path, then we need the simple code like as shown in below.
files = os.listdir(path)
latest_file = files[0]
for key in files:
if os.path.getctime(path+key) > os.path.getctime(path + latest_file):
latest = key
print(latest)```
New contributor
$endgroup$
Consider you has the directories in a particular path, then we need the simple code like as shown in below.
files = os.listdir(path)
latest_file = files[0]
for key in files:
if os.path.getctime(path+key) > os.path.getctime(path + latest_file):
latest = key
print(latest)```
New contributor
New contributor
answered 2 mins ago
KabeerKabeer
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Code Review Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f120494%2ffinding-the-latest-file-in-a-folder%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown