Connecting Tech Pros Worldwide Forums | Help | Site Map

cp

call_me_anything
Guest
 
Posts: n/a
#1: Jun 27 '08
Is there some language level support for operations like cp, mv, find
etc. ?
Requirement is to have a code which will do file cp/mv, look for some
files recursively etc.
Also, the code should run on linux, solaris as well as windows.

utab
Guest
 
Posts: n/a
#2: Jun 27 '08

re: cp


On Mon, 19 May 2008 02:09:22 -0700, call_me_anything wrote:
Quote:
Is there some language level support for operations like cp, mv, find
etc. ?
Requirement is to have a code which will do file cp/mv, look for some
files recursively etc.
Also, the code should run on linux, solaris as well as windows.
These are not standard C++ features however Boost::filesystem is what you
are looking for, for the time being I am not sure how much of your
requirements are satisfied by this library but I suppose quite a lot ;)

--
Umut
The Architect
Guest
 
Posts: n/a
#3: Jun 27 '08

re: cp


On May 19, 2:25 pm, utab <umut.ta...@gmail.comwrote:
Quote:
On Mon, 19 May 2008 02:09:22 -0700, call_me_anything wrote:
Quote:
Is there some language level support for operations like cp, mv, find
etc. ?
Requirement is to have a code which will do file cp/mv, look for some
files recursively etc.
Also, the code should run on linux, solaris as well as windows.
>
These are not standard C++ features however Boost::filesystem is what you
are looking for, for the time being I am not sure how much of your
requirements are satisfied by this library but I suppose quite a lot ;)
>
--
Umut
Yes Boost would be the way to go for if you require "platform
independent" file support in C++.
Closed Thread