Can urllib check path exists on server?

2009-02-10 Thread Muddy Coder
Hi Folks, urllib bridges up a client to a server, it works fine. I wonder: is there a method that can check the existence of a file in the server side? We can check such an existence on local filesystem by using os.path.exists(), can I do such a check on server? For example,

Can urllib check path exists on server?

2009-02-10 Thread rdmurray
Muddy Coder cosmo_gene...@yahoo.com wrote: urllib bridges up a client to a server, it works fine. I wonder: is there a method that can check the existence of a file in the server side? We can check such an existence on local filesystem by using os.path.exists(), can I do such a check on