mirror of
https://gitee.com/TarsCloud/TarsCpp.git
synced 2025-01-05 17:42:24 +08:00
112 lines
2.7 KiB
C++
112 lines
2.7 KiB
C++
/**
|
|
* Tencent is pleased to support the open source community by making Tars available.
|
|
*
|
|
* Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved.
|
|
*
|
|
* Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
|
|
* in compliance with the License. You may obtain a copy of the License at
|
|
*
|
|
* https://opensource.org/licenses/BSD-3-Clause
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software distributed
|
|
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations under the License.
|
|
*/
|
|
|
|
#include "util/tc_file.h"
|
|
#include <errno.h>
|
|
#include <iterator>
|
|
#include <sys/time.h>
|
|
|
|
using namespace tars;
|
|
|
|
/*
|
|
int removeFile(const string &sFullFileName, bool bRecursive)
|
|
{
|
|
cout << sFullFileName << endl;
|
|
string path = TC_File::simplifyDirectory(sFullFileName);
|
|
|
|
struct stat f_stat;
|
|
|
|
if (lstat(path.c_str(), &f_stat) == -1)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
if(S_ISDIR(f_stat.st_mode))
|
|
{
|
|
if(bRecursive)
|
|
{
|
|
vector<string> files;
|
|
TC_File::listDirectory(path, files, true, false);
|
|
for(size_t i = 0; i < files.size(); i++)
|
|
{
|
|
removeFile(files[i], bRecursive);
|
|
}
|
|
|
|
if(path != "/")
|
|
{
|
|
if(::rmdir(path.c_str()) == -1)
|
|
{
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(::rmdir(path.c_str()) == -1)
|
|
{
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(::remove(path.c_str()) == -1)
|
|
{
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
*/
|
|
|
|
struct Out
|
|
{
|
|
void operator()(const string &n)
|
|
{
|
|
cout << n << endl;
|
|
}
|
|
};
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
try
|
|
{
|
|
// cout << TC_File::getFileSize("./test_tc_file.cpp") << endl;
|
|
// cout << TC_File::isFileExist("./test_tc_file.cpp", S_IFDIR) << endl;
|
|
// cout << TC_File::makeDir("test") << endl;
|
|
// cout << TC_File::simplifyDirectory("/.") << endl;
|
|
// cout << TC_File::simplifyDirectory("/./ab/tt//t///t//../tt/") << endl;
|
|
// TC_File::removeFile("./", true);
|
|
// vector<string> v;
|
|
// TC_File::listDirectory("/home/base.l", v, true);
|
|
// for_each(v.begin(), v.end(), Out());
|
|
|
|
TC_File::copyFile("/data/shared/Tars/web/", "/home/tars/", true);
|
|
// TC_File::removeFile("/home/base.l", false);
|
|
|
|
}
|
|
catch(exception &ex)
|
|
{
|
|
cout << ex.what() << endl;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|