472,373 Members | 1,445 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

check disc space

Any ideas how to check for free disc space from Python. Platform
independent?
Thanks for any suggestion.
Thomas

Jul 18 '05 #1
6 4870
Thomas Schulz <th****@esands.com> wrote...
Any ideas how to check for free disc space from Python. Platform
independent?


Fortunately for you, my bad stomach will not allow me but a precious
hour of sleep this fine morning. :)

http://botanicus.net/dw/tmp/DiskFree.py

Tested: Win32, Linux, FreeBSD. I'm going to work in about 3 hours.
This _really_ sucks. :(
David.
Jul 18 '05 #2
Thanks for that.
I wonder if it would be worthwhile to have such a functionality
somewhere in the os module?

Thomas
David M. Wilson wrote:
Thomas Schulz <th****@esands.com> wrote...

Any ideas how to check for free disc space from Python. Platform
independent?

Fortunately for you, my bad stomach will not allow me but a precious
hour of sleep this fine morning. :)

http://botanicus.net/dw/tmp/DiskFree.py

Tested: Win32, Linux, FreeBSD. I'm going to work in about 3 hours.
This _really_ sucks. :(
David.


Jul 18 '05 #3
"T. Schulz" wrote:
I wonder if it would be worthwhile to have such a functionality
somewhere in the os module?


two counter-arguments:

- the os module is traditionally used to provide access to posix-style
services provided by the OS (or the C library). in this case, os.statvfs
is such a function; calling out to "du" isn't

(shouldn't that be "df", btw? os.popen("du -k dir").split()[-5] sure
doesn't give the free diskspace on any platform I have access to...)

- what you mean with "free disc space" may depend on the platform
and the application; os.statvfs provides lots of additional information
that you can use on a Unix platform, and there are similar (but not
identical) metrics available on Windows.

(a third argument is that "free disc space" is a rather meaningless metric
on a modern operating system; it's hardly ever useful for anything except
"warning, warning, less than 5% free space" alerts. you really don't want
people to write "if os.getfreespace() >= len(buffer): f.write(buffer)" and
file a bug when write fails ;-)

</F>


Jul 18 '05 #4
"Fredrik Lundh" <fr*****@pythonware.com> wrote...
- the os module is traditionally used to provide access to posix-style
services provided by the OS (or the C library). in this case, os.statvfs
is such a function; calling out to "du" isn't (shouldn't that be "df", btw? os.popen("du -k dir").split()[-5] sure
doesn't give the free diskspace on any platform I have access to...)
Um, yep. Fixed. *sheepish shrug*

(a third argument is that "free disc space" is a rather meaningless metric
on a modern operating system; it's hardly ever useful for anything except
"warning, warning, less than 5% free space" alerts.
Considering what I see python used for on a day-to-day basis, this
isn't "hardly ever useful". I have seen jobs fail as a direct result
of no disk space check. This should indeed be handled elsewhere and in
a different fashion, but sometimes the world just ain't the ideal
place you'd like to believe it is.

When you are performing 4gb deduplication runs on a cluster, and have
to wait a couple of days only to find out you don't have enough disk
space to write out the last 5 records of the result tables, I think
this silly little module can be justified.

And why not just use the POSIXy interface provided by os? Well, the
company I work for uses the same codebase for both Windows and Linux
clustering, which is a quite a feat. All support tools as such must
run under both operating systems too.

you really don't want
people to write "if os.getfreespace() >= len(buffer): f.write(buffer)" and
file a bug when write fails ;-)


Certainly not! :)

But "if estimated_space > int(free_space * 1.05): ..." might not be
such a bad thing when there is no other route to sanity available.

Thanks,
David.
Jul 18 '05 #5
Fredrik Lundh wrote:
(a third argument is that "free disc space" is a rather meaningless metric
on a modern operating system; it's hardly ever useful for anything except
"warning, warning, less than 5% free space" alerts. you really don't want
people to write "if os.getfreespace() >= len(buffer): f.write(buffer)" and
file a bug when write fails ;-)


Well, I think that for installation programs, downloaders and file
managers, for example, it would be useful.

yours,
Gerrit.

--
122. If any one give another silver, gold, or anything else to keep, he
shall show everything to some witness, draw up a contract, and then hand
it over for safe keeping.
-- 1780 BC, Hammurabi, Code of Law
--
Asperger's Syndrome - a personal approach:
http://people.nl.linux.org/~gerrit/english/

Jul 18 '05 #6

But "if estimated_space > int(free_space * 1.05): ..." might not be
such a bad thing when there is no other route to sanity available.


I support that.

In my current project, I know that I get 1GB of data during the next 15
minutes or so. I would like to make sure that there is enough space
available.

We develop on Linux but support Windows as well.
Certainly we get there if we use os.statvfs here and
win32api.GetDiskFree there. But I belive the question is quite common
and why shouldn't there be a os independent abstraction? Specially since
almost all current hardware uses some kind of file system to store things.

Thomas

Jul 18 '05 #7

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

Similar topics

5
by: Alex Polite | last post by:
I need to put recursive data structures on disc and found out that cPickle doesn't like recursion. What are my options? alex -- Alex Polite http://polite.se
7
by: YT | last post by:
Hello, I am this close | | to throwing myself out the window... I am trying to do a <UL><LI> series and i really really really want the disc size of the list to be nice and small. i've been...
1
by: James | last post by:
After uppgrading from .NET v1.1 to .NET v2.0 we ca see massive usage of disc space(10 GB) in a subfolder in the following folder: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET...
5
by: Herbert Lukas | last post by:
Hi, during the setup of german MSDN library VS 2006 juli (Disc 3619) the VS 2005 DVD was requested. I inserted both VS 2005 DVD German (Disc 3185) and English (Disc 3070) without success. ...
2
vdraceil
by: vdraceil | last post by:
Hi friends,i just wanna know whether the presence of a disc in the drive can be detected by coding in vb6.0..if the disc is present i want to perform a set of actions, else i want to display 'insert...
9
by: DataSmash | last post by:
I simply want to capture the free disc space in a variable so that I can compare changes. I'm aware of a few commands like "df -h" or "du - k", but I can't figure out how to capture those values...
1
by: =?Utf-8?B?T2FrZGVuZQ==?= | last post by:
I've just bought a new computer and want to load my Office software onto it. The software is on a disc, but the computer doesn't have a disc drive. I've tried loading the disc onto a flash drive...
2
DonRayner
by: DonRayner | last post by:
Hi all, I've been fighting with this problem for a couple of days and hopfully someone here has an answer. First off this is a comercial software package (JobBoss 5.02) using access 2000 runtime....
1
by: =?Utf-8?B?amlt?= | last post by:
Using the normal method my disc check and defragmenter will not work on c drive
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
1
by: Johno34 | last post by:
I have this click event on my form. It speaks to a Datasheet Subform Private Sub Command260_Click() Dim r As DAO.Recordset Set r = Form_frmABCD.Form.RecordsetClone r.MoveFirst Do If...

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.