Re: [Tutor] Copying Files

2011-06-30 Thread Prasad, Ramit
-Original Message-
From: tutor-bounces+ramit.prasad=jpmchase@python.org 
[mailto:tutor-bounces+ramit.prasad=jpmchase@python.org] On Behalf Of 
gagnr...@verizon.net
Sent: Thursday, June 30, 2011 1:03 PM
To: tutor@python.org
Subject: [Tutor] Copying Files

I was using glob and shutil to copy logs from one location to another 
successfully, however, I have run into a snag when trying to copy a directory.  
 Not sure how to fix this.

Current Code is as follows:


for file in glob.glob("/drbd1/monitorcenter/Apps/WEB-INF/*"):   #This line is 
holding up the script due to copying a directory and not a single file
shutil.copy(file, path_2_b_2)

Any ideas?




Why not try shutil.copytree instead? 
Shutil.copytree('/drbd1/monitorcenter/Apps/WEB-INF', path_2_b_2 )
http://docs.python.org/library/shutil.html 


Ramit


Ramit Prasad | JPMorgan Chase Investment Bank | Currencies Technology
712 Main Street | Houston, TX 77002
work phone: 713 - 216 - 5423

This communication is for informational purposes only. It is not
intended as an offer or solicitation for the purchase or sale of
any financial instrument or as an official confirmation of any
transaction. All market prices, data and other information are not
warranted as to completeness or accuracy and are subject to change
without notice. Any comments or statements made herein do not
necessarily reflect those of JPMorgan Chase & Co., its subsidiaries
and affiliates.

This transmission may contain information that is privileged,
confidential, legally privileged, and/or exempt from disclosure
under applicable law. If you are not the intended recipient, you
are hereby notified that any disclosure, copying, distribution, or
use of the information contained herein (including any reliance
thereon) is STRICTLY PROHIBITED. Although this transmission and any
attachments are believed to be free of any virus or other defect
that might affect any computer system into which it is received and
opened, it is the responsibility of the recipient to ensure that it
is virus free and no responsibility is accepted by JPMorgan Chase &
Co., its subsidiaries and affiliates, as applicable, for any loss
or damage arising in any way from its use. If you received this
transmission in error, please immediately contact the sender and
destroy the material in its entirety, whether in electronic or hard
copy format. Thank you.

Please refer to http://www.jpmorgan.com/pages/disclosures for
disclosures relating to European legal entities.
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


[Tutor] Copying Files

2011-06-30 Thread gagnrath
I was using glob and shutil to copy logs from one location to another 
successfully, however, I have run into a snag when trying to copy a directory.  
 Not sure how to fix this.

Current Code is as follows:


for file in glob.glob("/drbd1/monitorcenter/Apps/WEB-INF/*"):   #This line is 
holding up the script due to copying a directory and not a single file
shutil.copy(file, path_2_b_2)

Any ideas?
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] copying files and regular expressions

2006-05-01 Thread Danny Yoo


On Mon, 1 May 2006, Alfonso wrote:

> I'm totally new to python. I would like to know, how can I copy files 
> using regular expressions (the equivalent in python to unix "cp 
> /home/mycount/*partialname* /home/mycount/directory/").

Hi Alfonso,

Just as a pedantic note: the above pattern you're using isn't quite a 
regular expression, but something less powerful called a "glob".

 http://en.wikipedia.org/wiki/Glob

Knowing the common names of things matters sometimes just because we 
communicate through the shared meanings of words.  In this situation, it 
does help because it turns out there's a 'glob' module in Python's 
Standard Library:

 http://www.python.org/doc/lib/module-glob.html

I'm not sure how familiar you are with using the Standard Library.  Have 
you used modules before?

The shell utilities defined in the 'shutil' module should also be helpful 
to let you copy files from one path to another:

 http://www.python.org/doc/lib/module-shutil.html

Best of wishes to you!
___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


[Tutor] copying files and regular expressions

2006-05-01 Thread Alfonso
I'm totally new to python. I would like to know, how can I copy files 
using regular expressions (the equivalent in python to unix "cp 
/home/mycount/*partialname* /home/mycount/directory/").


__ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y móviles desde 1 céntimo por minuto. 
http://es.voice.yahoo.com
___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor