473,386 Members | 1,752 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

howto obtain directory where current (running) py-file is placed?

Hi all,
I guess this question was asked many times before, but I don't know
keywords for web search.

Thank you in advance, D.

Jun 7 '07 #1
7 1670
On Jun 7, 8:39 am, dmitrey <open...@ukr.netwrote:
Hi all,
I guess this question was asked many times before, but I don't know
keywords for web search.

Thank you in advance, D.
import os

d1 = os.path.dirname(__file__)
d2 = os.path.dirname(os.__file__)

print d1
print d2

Jun 7 '07 #2
On Jun 7, 10:18 am, Gerard Flanagan <grflana...@yahoo.co.ukwrote:
On Jun 7, 8:39 am, dmitrey <open...@ukr.netwrote:
Thank you.
And what is the simplest way (without split/join, if exist) to obtain
name of directory parent to directory my_directory_name?

Thx, D.
>
Hi all,
I guess this question was asked many times before, but I don't know
keywords for web search.
Thank you in advance, D.

import os

d1 = os.path.dirname(__file__)
d2 = os.path.dirname(os.__file__)

print d1
print d2

Jun 7 '07 #3
On Jun 7, 1:19 pm, dmitrey <open...@ukr.netwrote:
On Jun 7, 10:18 am, Gerard Flanagan <grflana...@yahoo.co.ukwrote:On Jun 7, 8:39 am, dmitrey <open...@ukr.netwrote:

Thank you.
And what is the simplest way (without split/join, if exist) to obtain
name of directory parent to directory my_directory_name?

Thx, D.
>>os.path.join(os.pardir, os.path.dirname('/a/b/c/d/e/f.log'))
'/a/b/c/d/e'
>>os.path.join(os.pardir, os.path.dirname(_))
'/a/b/c/d'
>>os.path.join(os.pardir, os.path.dirname(_))
'/a/b/c'
>>os.path.join(os.pardir, os.path.dirname(_))
'/a/b'
>>os.path.join(os.pardir, os.path.dirname(_))
'/a'
>>os.path.join(os.pardir, os.path.dirname(_))
'/'
>>os.path.join(os.pardir, os.path.dirname(_))
'/'

(When using the interactive interpreter, an underscore '_' means 'the
previous result')

HTH

Gerard

Jun 7 '07 #4
Gerard Flanagan wrote:
On Jun 7, 8:39 am, dmitrey <open...@ukr.netwrote:
>Hi all,
I guess this question was asked many times before, but I don't know
keywords for web search.

Thank you in advance, D.

import os

d1 = os.path.dirname(__file__)
here I get an error "__file__" is not defined ??
d2 = os.path.dirname(os.__file__)
here I get a completely different path ??
>
print d1
print d2
This seems to work (but I doubt it's always working !! )
print os.getcwd()

so what's the real answer ?

thanks,
Stef Mientki

Jun 7 '07 #5
On Jun 8, 1:01 am, Stef Mientki <S.Mientki-nos...@mailbox.kun.nl>
wrote:
Gerard Flanagan wrote:
On Jun 7, 8:39 am, dmitrey <open...@ukr.netwrote:
Hi all,
I guess this question was asked many times before, but I don't know
keywords for web search.
Thank you in advance, D.
import os
d1 = os.path.dirname(__file__)

here I get an error "__file__" is not defined ??
The code must be run from a script or module.
If you run it from an interactive prompt, then you will get a
NameError.
d2 = os.path.dirname(os.__file__)

here I get a completely different path ??
Is it the path of the os module? You can expect pure Python modules to
have a __file__ attribute, but not every module has one - see the
docs.
>
print d1
print d2

This seems to work (but I doubt it's always working !! )
print os.getcwd()

so what's the real answer ?

thanks,
Stef Mientki

Jun 8 '07 #6
dmitrey wrote:
Hi all,
I guess this question was asked many times before, but I don't know
keywords for web search.

Thank you in advance, D.
In the future, please ask your question in the body of your message
(not just in the subject line).

This question has no answer in general. There are some things like
__file__ that may be "good enough" depending on your usage, but keep
in mind in general that:
1. __file__ may be altered directly by the program and give an answer
that has no past or current relationship to any filename for the file
that contains the code currently being run.
2. Even if you make no changes, it can contain arbitrary results in
not uncommon situations (e.g. in my local install, an interactive
python session--or one from a here-document in the shell--lists
~/.pythonrc or "<stdin>" in __file__, even though in neither case was
I running my .pythonrc or a file named "<stdin>"
3. Without that, any file may have 0, 1, or many names; those names
may differ now from what they were when the file was first accessed.
So __file__ may refer to an unlinked name (even in the case where at
least one name that existed when you first executed the file is still
valid), or may even e the name of another, different file that was
created (or linked/renamed) after you started running things.

Depending on your needs, those factors may or may not matter. They're
certainly worth being aware of, and for some applications they may
have massive security implications.

Jun 8 '07 #7
On 7 , 10:39, dmitrey <open...@ukr.netwrote:
Hi all,
I guess this question was asked many times before, but I don't know
keywords for web search.

Thank you in advance, D.
import sys
file_name = sys.argv[0]

????????????
this?

Jun 8 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Peter Schwalm | last post by:
I'd like to modify the python search path depending on the source directory of the script being started. The reason is: I use a version control system, and the python scripts and modules are...
6
by: Peter Maas | last post by:
My goal is to have the top level of a directory tree in the Python path without touching anything outside the directory. I tried to create .pth files with the top level path in every subdirectory...
3
by: Jacek Jurkowski | last post by:
Run a Process using current user login? I hava a service that works as LocalSystem and i'm running some Process but I would Like to run it as an current logged user or admin even? How to obtain...
2
by: Jon | last post by:
It appears that (windows) python searches in the current working directory before looking in the local site-packages directory, or that '.' comes first in sys.path? The problem arises when I made...
7
by: patrik.kahari | last post by:
Is there a c++ function similar to getcwd that does not give you the working directory but the directory or path of the currently running executable? I need this because im porting a game that...
1
by: Harlin Seritt | last post by:
I have a script that I want to import called upper.py. It is 2 directories above the script that will call it - i'll call that one main.py. How am I able to import a script in a directory that is...
4
by: brad | last post by:
When I use idle or a shell to execute a python script, the script executes in the directory it is currently in (in this case, my desktop). However, when using GNOME and right clicking the py script...
5
by: David Lees | last post by:
August 31, 2007 I just downloaded the current Cython release and have no problem running the cpython.py translator on the demo code. But when I try compiling, I get an error complaining that my...
1
by: dmitrey | last post by:
howto compile recursively all *.py files to *.pyc (from a directory my_dir)? Thank you in advance, D.
4
by: stef mientki | last post by:
hello, my program has become a bit large, and now I want to split the files over several subdirectories. So in the example shown below, I just moved the files f1.py and f2.py to a deeper...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.