This commit is contained in:
Manav Rathi 2024-04-16 15:26:35 +05:30
parent 415fa79271
commit cd4b2a6810
No known key found for this signature in database
2 changed files with 6 additions and 6 deletions

View file

@ -1,5 +0,0 @@
export const getParentFolderName = (filePath: string) => {
const folderPath = filePath.substring(0, filePath.lastIndexOf("/"));
const folderName = folderPath.substring(folderPath.lastIndexOf("/") + 1);
return folderName;
};

View file

@ -15,7 +15,6 @@ import { groupFilesBasedOnCollectionID } from "utils/file";
import { getValidFilesToUpload } from "utils/watch";
import { removeFromCollection } from "../collectionService";
import { getLocalFiles } from "../fileService";
import { getParentFolderName } from "./utils";
import {
diskFileAddedCallback,
diskFileRemovedCallback,
@ -642,3 +641,9 @@ class watchFolderService {
}
export default new watchFolderService();
export const getParentFolderName = (filePath: string) => {
const folderPath = filePath.substring(0, filePath.lastIndexOf("/"));
const folderName = folderPath.substring(folderPath.lastIndexOf("/") + 1);
return folderName;
};