Python Forum
How to import file and function in another folder
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to import file and function in another folder
#1
Hi,
I have two folders folder1, folder2 as shown below:

Folder1
-- file1
--file2
Folder2
--file3
-- file4
I open file4 in (spyder/vscode) and want to import file2 & function2. But I am unable to open, it give Folder1 does not exists. Because when I open file4, the cwd is Folder2. How to open file in another folder.
Reply
#2
The simplest way is to append folder1 to the list sys.path
import sys
sys.path.append('path/to/folder1')

import file2
Then you could read the section about modules in the python tutorial https://docs.python.org/3/tutorial/modules.html
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to write variable in a python file then import it in another python file? tatahuft 4 851 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  import a function from another file using relative path paul18fr 6 2,673 Aug-01-2024, 06:40 AM
Last Post: paul18fr
  Delete file with read-only permission, but write permission to parent folder cubei 6 25,216 Jun-01-2024, 07:22 AM
Last Post: Eleanorreo
  Compare folder A and subfolder B and display files that are in folder A but not in su Melcu54 3 1,427 Jan-05-2024, 05:16 PM
Last Post: Pedroski55
  problem in import module from other folder akbarza 5 9,164 Sep-01-2023, 07:48 AM
Last Post: Gribouillis
  Reading a file name fron a folder on my desktop Fiona 4 2,019 Aug-23-2023, 11:11 AM
Last Post: Axel_Erfurt
Video doing data treatment on a file import-parsing a variable EmBeck87 15 5,446 Apr-17-2023, 06:54 PM
Last Post: EmBeck87
  Import XML file directly into Excel spreadsheet demdej 0 1,554 Jan-24-2023, 02:48 PM
Last Post: demdej
  Function not executing each file in folder mathew_31 9 3,976 Aug-22-2022, 08:40 PM
Last Post: deanhystad
  Dynamic File Name to a shared folder with open command in python sjcsvatt 9 9,726 Jan-07-2022, 04:55 PM
Last Post: bowlofred

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020