aboutsummaryrefslogtreecommitdiffstats
path: root/directory.h
blob: 51dbc4d6fb61c99856fd8b30d8c30ef0082bf9e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef INCLUDE_BLASSIC_DIRECTORY_H
#define INCLUDE_BLASSIC_DIRECTORY_H

// directory.h
// Revision 7-feb-2005


#include <string>

#include "util.h"


class Directory {
public:
	Directory ();
	~Directory ();
	std::string findfirst (const std::string & str);
	std::string findnext ();
private:
	Directory (const Directory &); // Forbidden
	Directory operator = (const Directory &); // Forbidden
	class Internal;
	Internal * pin;
	//util::pimpl_ptr <Internal> pin;
};

void remove_file (const std::string & filename);
void rename_file (const std::string & orig, const std::string & dest);

void change_dir (const std::string & dirname);
void make_dir (const std::string & dirname);
void remove_dir (const std::string & dirname);

void sleep_milisec (unsigned long n);

#endif

// End of directory.h
Un proyecto texto-plano.xyz