blob: 8857a04cd0dd32c4da79d0de5d0a0ec2ca58e5f3 [file] [log] [blame]
/* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*/
use atone::Vc;
use iggy::utils::byte_size::IggyByteSize;
use std::path::{Path, PathBuf};
use tokio::fs::{read_dir, remove_file, File, OpenOptions};
pub async fn open(path: &str) -> Result<File, std::io::Error> {
OpenOptions::new().read(true).open(path).await
}
pub async fn append(path: &str) -> Result<File, std::io::Error> {
OpenOptions::new().read(true).append(true).open(path).await
}
pub async fn overwrite(path: &str) -> Result<File, std::io::Error> {
OpenOptions::new()
.create(true)
.write(true)
.truncate(false)
.open(path)
.await
}
pub async fn remove(path: &str) -> Result<(), std::io::Error> {
remove_file(path).await
}
pub async fn rename(old_path: &str, new_path: &str) -> Result<(), std::io::Error> {
tokio::fs::rename(Path::new(old_path), Path::new(new_path)).await
}
pub async fn exists(path: &str) -> Result<bool, std::io::Error> {
tokio::fs::try_exists(path).await
}
pub async fn folder_size<P>(path: P) -> std::io::Result<IggyByteSize>
where
P: Into<PathBuf> + AsRef<Path>,
{
let mut total_size = 0;
let mut queue: Vc<PathBuf> = Vc::new();
queue.push_back(path.into());
while let Some(current_path) = queue.pop_front() {
let mut entries = read_dir(&current_path).await.unwrap();
while let Some(entry) = entries.next_entry().await.unwrap() {
let metadata = entry.metadata().await.unwrap();
if metadata.is_file() {
total_size += metadata.len();
} else if metadata.is_dir() {
queue.push_back(entry.path());
}
}
}
Ok(total_size.into())
}