mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
15 lines
300 B
C++
15 lines
300 B
C++
#pragma once
|
|
|
|
#include "Settings.h"
|
|
#include <windows.h>
|
|
|
|
namespace FileSystem {
|
|
class File {
|
|
public:
|
|
static bool Exists(LPCTSTR path);
|
|
static bool Exists(const String& path);
|
|
|
|
static void Create(LPCTSTR path);
|
|
static void Create(const String& path);
|
|
};
|
|
} |