blob: 04b9a0705e9ee263b0c7bfbe13c0e8c403b2ae5d [file] [log] [blame]
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_DISK_CACHE_CACHE_UTIL_H_
#define NET_DISK_CACHE_CACHE_UTIL_H_
#pragma once
#include "base/basictypes.h"
class FilePath;
namespace disk_cache {
// Moves the cache files from the given path to another location.
// Fails if the destination exists already, or if it doesn't have
// permission for the operation. This is basically a rename operation
// for the cache directory. Returns true if successful. On ChromeOS,
// this moves the cache contents, and leaves the empty cache
// directory.
bool MoveCache(const FilePath& from_path, const FilePath& to_path);
// Deletes the cache files stored on |path|, and optionally also attempts to
// delete the folder itself.
void DeleteCache(const FilePath& path, bool remove_folder);
// Deletes a cache file.
bool DeleteCacheFile(const FilePath& name);
} // namespace disk_cache
#endif // NET_DISK_CACHE_CACHE_UTIL_H_