nextcloud-paths

Path helpers for Nextcloud https://npmjs.org/@nextcloud/paths

GPL-3.0 License

Downloads
31.3K
Stars
5
Committers
7

@nextcloud/paths

Path helpers for Nextcloud apps.

Installation

npm i -S @nextcloud/paths

Usage

import { basename, dirname, encodePath, isSamePath, joinPaths } from '@nextcloud/paths'

basename('/my/file.txt')
// -> 'file.txt'

dirname('/my/file.txt')
// -> '/my'

encodePath('/my/other file.txt')
// -> '/my/other%20file'

isSamePath('/my/file.txt', 'my/file.txt')
// -> true

joinPaths('/my', 'folder', 'file.txt')
// -> '/my/folder/file.txt'
Package Rankings
Top 4.95% on Npmjs.org
Badges
Extracted from project README
REUSE status npm Documentation
Related Projects