1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CREATE_DIRECTORY_H_
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CREATE_DIRECTORY_H_
8 #include "base/files/file.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "chrome/browser/chromeos/file_system_provider/operations/operation.h"
11 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_info.h"
12 #include "chrome/browser/chromeos/file_system_provider/request_value.h"
13 #include "storage/browser/fileapi/async_file_util.h"
19 namespace extensions
{
21 } // namespace extensions
24 namespace file_system_provider
{
25 namespace operations
{
27 // Creates a directory. If |recursive| is set to true, then creates also all
28 // non-existing directories on the path. The operation will fail if the
29 // directory already exists. Created per request.
30 class CreateDirectory
: public Operation
{
32 CreateDirectory(extensions::EventRouter
* event_router
,
33 const ProvidedFileSystemInfo
& file_system_info
,
34 const base::FilePath
& directory_path
,
36 const storage::AsyncFileUtil::StatusCallback
& callback
);
37 ~CreateDirectory() override
;
39 // Operation overrides.
40 bool Execute(int request_id
) override
;
41 void OnSuccess(int request_id
,
42 scoped_ptr
<RequestValue
> result
,
43 bool has_more
) override
;
44 void OnError(int request_id
,
45 scoped_ptr
<RequestValue
> result
,
46 base::File::Error error
) override
;
49 base::FilePath directory_path_
;
51 const storage::AsyncFileUtil::StatusCallback callback_
;
53 DISALLOW_COPY_AND_ASSIGN(CreateDirectory
);
56 } // namespace operations
57 } // namespace file_system_provider
58 } // namespace chromeos
60 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CREATE_DIRECTORY_H_