You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
571 B
27 lines
571 B
// WorkDir.h
|
|
|
|
#ifndef __WORK_DIR_H
|
|
#define __WORK_DIR_H
|
|
|
|
#include "../../../Windows/FileDir.h"
|
|
|
|
#include "../../Common/FileStreams.h"
|
|
|
|
#include "ZipRegistry.h"
|
|
|
|
FString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const FString &path, FString &fileName);
|
|
|
|
class CWorkDirTempFile
|
|
{
|
|
FString _originalPath;
|
|
NWindows::NFile::NDir::CTempFile _tempFile;
|
|
COutFileStream *_outStreamSpec;
|
|
public:
|
|
CMyComPtr<IOutStream> OutStream;
|
|
|
|
HRESULT CreateTempFile(const FString &originalPath);
|
|
HRESULT MoveToOriginal(bool deleteOriginal);
|
|
};
|
|
|
|
#endif
|