问题标签 [getcwd]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
posix - 非标准/非 POSIX getcwd() 不调用 malloc
我误解了 getcwd 手册页中这句话的哪一部分?
因为
在第 24 行导致 Seg-Fault 并且 gdb 的回溯告诉我缓冲区 = 0x0?
编辑:
无论出于何种原因仍然无法正常工作,但是
做
c - getcwd()在什么情况下返回NULL?
首先想到getcwd()
可能 return NULL
,当 cwd 不够大时。还有其他情况吗?
c - C programming getcwd variable manipulation
Basically I need an if statement of which the response is dependent upon the current working directory.
I have done some research on the topic and I believe that the getcwd()
function is what I am looking for, but I can't figure out how to interface with it in an if statement.
I am new to C, and the program I am making needs to be located on the Desktop (btw its a UNIX system) for it to run properly and the if statement needs to determine whether it is located on said desktop or not.
docker - Docker:getcwd:无法访问父目录
我有一个 Java 应用程序,通过 sbt-native-packager 打包到 docker 容器中。在本地机器或其他服务器上测试时,容器启动得很好。在 Azure 上的一台 CoreOS 机器上,我得到:
我尝试了不同的方法来启动它,但似乎没有任何效果。有任何想法吗 ?
python - 获取脚本目录名称 - Python
我知道我可以使用它来获取完整的文件路径
但我只想要文件夹的名称,我的脚本就在里面。所以如果我有 my_script.py 并且它位于
我想返回“测试”我该怎么做?
谢谢
c++ - 如何在 Mac OSX C++ 中使用空格格式化文件路径
我正在尝试stat()
在为 Mac OS X 编写的 C++ 程序中使用该函数。
stat() 函数找不到这个目录:
但它能够找到这个:
我猜它与空格有关。我从getcwd()
命令中得到了目录。我什至尝试用引号括起来,但这似乎不起作用。
macos - OSX 上 getcwd 系统调用的问题
有谁知道如何使用 NASM 在 OSX 中获取当前工作目录?系统调用 getcwd 在 osx 上不可用,并且 dtruss pwd 返回许多 stat sys 调用。但是在手册中我找不到 stat 的哪个结构变量返回当前工作目录。谢谢。
python - 函数 getcwd() 的路径不正确
我走错了路。数据文件位于 D:... 中,并且每次从 python 返回路径 C:\Python27\lib\site-packages\xy 。我使用该功能
我该如何解决?
c++ - _fullpath 在 Visual Studio C++ 中给出十六进制值
我正在尝试找出我的当前工作目录是什么。我试过同时使用_fullpath
和_getcwd
作为<direct.h>
. 但是,它给我的只是一个 8 字节的十六进制值(例如5504CA90
)。
为什么它给我这个,我怎样才能得到正确的 cwd?我在 C++ 中使用 Visual Studio 2015。
我的代码如下所示:
它给了我这个输出:
但是,每次运行它时它都会给我一个不同的十六进制值。