Tagged Questions

4
votes
2answers
70 views

Import module from subfolder

I want to import subfolders as modules. Therefore every subfolder contains a __init__.py. My folder structure is like this: src\ main.py dirFoo\ __init__.py foofactory.py dirFoo1\ ...
0
votes
1answer
37 views

find match folders then copy files and subfolders

Am new in Python and would like to do a task... I need to compare folder names from two folders dirfolder1 and dirfolder2... compare the folders in them and if they match...copy files and sub folders ...
0
votes
2answers
1k views

Browse files and subfolders in Python

I'd like to browse through the current folder and all its subfolders and get all the files with .htm|.html extensions. I have found out that it is possible to find out whether an object is a dir or ...