Search files into a directory / compatible Unix / Windows
i'm a beginner in Python, and try to use the os module to find and aggregate all files in a given folder, given a key word such as "example".
Based on what I found so far, here is my code :
def import_files_list(path, key_word):
files =
for i in os.listdir(path):
if os.path.isfile(os.path.join(path,i)) and key_word in i:
file_plus_path = path+i
pprint(file_plus_path)
files.append(file_plus_path)
return files
actual_dir = os.path.dirname(os.path.realpath(__file__))
wanted_dir = os.path.split(actual_dir)[0]
files_list = import_files_list(wanted_dir, 'example')
pprint(files_list)
The thing is that, instead of getting for instance :
'C:\Users\User\folder\example1.csv'
I'm getting :
'C:\Users\User\folderexample1.csv'
So this is not correct.
I don't want to hardcode anything such as "" to solve the problem, and I'm pretty sure I could also simplify the above code.
Could you help me and tell me here I am wrong ?
python
add a comment |
i'm a beginner in Python, and try to use the os module to find and aggregate all files in a given folder, given a key word such as "example".
Based on what I found so far, here is my code :
def import_files_list(path, key_word):
files =
for i in os.listdir(path):
if os.path.isfile(os.path.join(path,i)) and key_word in i:
file_plus_path = path+i
pprint(file_plus_path)
files.append(file_plus_path)
return files
actual_dir = os.path.dirname(os.path.realpath(__file__))
wanted_dir = os.path.split(actual_dir)[0]
files_list = import_files_list(wanted_dir, 'example')
pprint(files_list)
The thing is that, instead of getting for instance :
'C:\Users\User\folder\example1.csv'
I'm getting :
'C:\Users\User\folderexample1.csv'
So this is not correct.
I don't want to hardcode anything such as "" to solve the problem, and I'm pretty sure I could also simplify the above code.
Could you help me and tell me here I am wrong ?
python
add a comment |
i'm a beginner in Python, and try to use the os module to find and aggregate all files in a given folder, given a key word such as "example".
Based on what I found so far, here is my code :
def import_files_list(path, key_word):
files =
for i in os.listdir(path):
if os.path.isfile(os.path.join(path,i)) and key_word in i:
file_plus_path = path+i
pprint(file_plus_path)
files.append(file_plus_path)
return files
actual_dir = os.path.dirname(os.path.realpath(__file__))
wanted_dir = os.path.split(actual_dir)[0]
files_list = import_files_list(wanted_dir, 'example')
pprint(files_list)
The thing is that, instead of getting for instance :
'C:\Users\User\folder\example1.csv'
I'm getting :
'C:\Users\User\folderexample1.csv'
So this is not correct.
I don't want to hardcode anything such as "" to solve the problem, and I'm pretty sure I could also simplify the above code.
Could you help me and tell me here I am wrong ?
python
i'm a beginner in Python, and try to use the os module to find and aggregate all files in a given folder, given a key word such as "example".
Based on what I found so far, here is my code :
def import_files_list(path, key_word):
files =
for i in os.listdir(path):
if os.path.isfile(os.path.join(path,i)) and key_word in i:
file_plus_path = path+i
pprint(file_plus_path)
files.append(file_plus_path)
return files
actual_dir = os.path.dirname(os.path.realpath(__file__))
wanted_dir = os.path.split(actual_dir)[0]
files_list = import_files_list(wanted_dir, 'example')
pprint(files_list)
The thing is that, instead of getting for instance :
'C:\Users\User\folder\example1.csv'
I'm getting :
'C:\Users\User\folderexample1.csv'
So this is not correct.
I don't want to hardcode anything such as "" to solve the problem, and I'm pretty sure I could also simplify the above code.
Could you help me and tell me here I am wrong ?
python
python
asked Nov 19 '18 at 14:14


SidGabriel
736
736
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Your problem is this line:
file_plus_path = path+i
Here you append one string to another, but without any delimiter between them. On the previous line you did it correctly: os.path.join(path,i)
.
So here's a way to correct that:
file_plus_path = os.path.join(path,i)
if os.path.isfile(file_plus_path) and key_word in i:
pprint(file_plus_path)
files.append(file_plus_path)
You're right ! It solved my mistake :) Thank you !
– SidGabriel
Nov 19 '18 at 14:27
add a comment |
Your Answer
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: "1"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f53376503%2fsearch-files-into-a-directory-compatible-unix-windows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your problem is this line:
file_plus_path = path+i
Here you append one string to another, but without any delimiter between them. On the previous line you did it correctly: os.path.join(path,i)
.
So here's a way to correct that:
file_plus_path = os.path.join(path,i)
if os.path.isfile(file_plus_path) and key_word in i:
pprint(file_plus_path)
files.append(file_plus_path)
You're right ! It solved my mistake :) Thank you !
– SidGabriel
Nov 19 '18 at 14:27
add a comment |
Your problem is this line:
file_plus_path = path+i
Here you append one string to another, but without any delimiter between them. On the previous line you did it correctly: os.path.join(path,i)
.
So here's a way to correct that:
file_plus_path = os.path.join(path,i)
if os.path.isfile(file_plus_path) and key_word in i:
pprint(file_plus_path)
files.append(file_plus_path)
You're right ! It solved my mistake :) Thank you !
– SidGabriel
Nov 19 '18 at 14:27
add a comment |
Your problem is this line:
file_plus_path = path+i
Here you append one string to another, but without any delimiter between them. On the previous line you did it correctly: os.path.join(path,i)
.
So here's a way to correct that:
file_plus_path = os.path.join(path,i)
if os.path.isfile(file_plus_path) and key_word in i:
pprint(file_plus_path)
files.append(file_plus_path)
Your problem is this line:
file_plus_path = path+i
Here you append one string to another, but without any delimiter between them. On the previous line you did it correctly: os.path.join(path,i)
.
So here's a way to correct that:
file_plus_path = os.path.join(path,i)
if os.path.isfile(file_plus_path) and key_word in i:
pprint(file_plus_path)
files.append(file_plus_path)
answered Nov 19 '18 at 14:20
dsh
10.2k32141
10.2k32141
You're right ! It solved my mistake :) Thank you !
– SidGabriel
Nov 19 '18 at 14:27
add a comment |
You're right ! It solved my mistake :) Thank you !
– SidGabriel
Nov 19 '18 at 14:27
You're right ! It solved my mistake :) Thank you !
– SidGabriel
Nov 19 '18 at 14:27
You're right ! It solved my mistake :) Thank you !
– SidGabriel
Nov 19 '18 at 14:27
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
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%2fstackoverflow.com%2fquestions%2f53376503%2fsearch-files-into-a-directory-compatible-unix-windows%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