📜  path.dirname nodejs - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:52.637000             🧑  作者: Mango

代码示例1
/* The path.dirname() method returns the directory name of a path,
similar to the Unix dirname command. Trailing directory separators
are ignored, see path.sep. */

path.dirname('/foo/bar/baz/asdf/quux');
// Returns: '/foo/bar/baz/asdf'