- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我需要从 Ruby (1.9.3) 中的 DOS (Win32) 路径获取文件的 NT( native )路径。
意思是,我有字符串:
dos_path = "C:\Windows\regedit.exe"
但我需要:
nt_path = "\Device\HarddiskVolume1\Windows\regedit.exe"
有什么办法吗?谢谢!
最佳答案
可以使用 QueryDosDevice
将 MS-DOS 设备名称转换为 NT 路径功能。从 Ruby 调用这样的函数可以用 Fiddle
完成。 .从 1.9.3 开始,它是 Ruby 标准库的一部分。但是,以下示例仅适用于 2.0.0 或更新版本。
require 'fiddle/import'
require 'fiddle/types'
module DOS2NT
extend Fiddle::Importer # makes function importing easier
dlload 'kernel32.dll'
include Fiddle::Win32Types # so DWORD can be used instead of unsigned long
extern 'DWORD QueryDosDeviceW(void*, void*, DWORD)', :stdcall
extern 'DWORD GetLastError()', :stdcall
ERROR_INSUFFICIENT_BUFFER = 122
SIZEOF_WCHAR = 2 # sizeof(WCHAR) on Windows
# a generic error class
class Error < StandardError
end
def self.dos_device_name_to_path(devicename)
initial_len = 256
grow_factor = 2
# we care about Unicode (Windows uses UTF-16LE)
devicename.encode!(Encoding::UTF_16LE)
# create buffer
buf = "\0\0".force_encoding(Encoding::UTF_16LE) * initial_len
# call QueryDosDeviceW until the call was successful
while (written_chars = QueryDosDeviceW(devicename, buf, buf.length)) == 0
# it wasn't
case (error = GetLastError())
# resize buffer as it was too short
when ERROR_INSUFFICIENT_BUFFER
buf *= grow_factor
# other errors like ERROR_FILE_NOT_FOUND (2)
else
raise Error, "QueryDosDeviceW failed (GetLastError returned #{error})"
end
end
# truncate buffer (including the null character)
path = buf[0, written_chars - SIZEOF_WCHAR]
# transcode the path to UTF-8 as that's usually more useful
path.encode!(Encoding::UTF_8)
end
end
# example strings from the question
dos_path = 'C:\Windows\regedit.exe'
nt_path = '\Device\HarddiskVolume1\Windows\regedit.exe'
# convert and print inspected result
p dos_path.sub(/\A[A-Z]:/i) { |m| DOS2NT.dos_device_name_to_path(m) } # => "\\Device\\HarddiskVolume1\\Windows\\regedit.exe"
关于Ruby - DOS (Win32) 路径名到 NT( native )路径名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31814555/
我想了解是什么让 ClearCase 创建这样的路径(不止一个@@):\TUNE\Integration\XmlFiles\PM_Content@@\main\integ_mp1601\4\Commu
我正在构建我的第一个多语言应用程序。通过 Middelware 成功检测到语言并将其附加到 req.lang。下一步,有没有办法也本地化路由路径?这对于 SEO 非常有用。 这里通常的方法是什么? c
如果选择了一个路径,我想向菜单点添加一个类。 如果每个网站都有自己的 .php/.html 文件,那就很容易了,但是一切都在 一个 中规则 .php 文件,所有内容都通过操作进行导航(?action=
我在 Windows 7(最新的 MSMQ 版本)上将 MSMQ.MSMQQueueInfo 与 jscript 一起使用。这是在加入域的计算机上运行的。由于某种我不知道的原因,它只是不接受我给它的
我有很多带空格的文件夹名称,例如“red dog” --> “c:\red dog\” files = dir str = ['cd ', files(3).name] eval(str) 执行返回错
我正在寻找有关如何使用 getopts 显示不带基名的目录名的信息。这应该首先为我计算机中的所有 sh 文件提供基本名称、制表符,然后是所有目录。 例如,如果我这样做:myBashfile.sh -e
我正在尝试自定义由 devise gem 创建的 url: devise_for :users, path: '', path_names: { sign_in: 'login', s
我有以下网址: https://www.example.com/article/f/1/test+article 我需要通过 JavaScript(纯 JavaScript)从 url 中获取“1”部
我们在我们的应用程序中使用了 boost::filesystem。我有一个“完整”路径,它是通过将多个路径连接在一起构建的: #include #include namespace b
Pathname 的 .children 方法返回的文件系统实体的顺序似乎是任意的,或者至少不是按字母顺序排列的。 有没有办法让这些通过文件系统按字母顺序返回,而不是在返回的数组上调用 .sort?
我正在尝试使用 pip 为 python 3 安装 Gelatin,我得到了这个回溯: Traceback (most recent call last): File "", line 1, in
我有一个注册页面的表格。该表单包含一个图像,该图像会根据情况更改其 src。在提交表单时激活的脚本中,如果该图像具有特定的 src,我希望表单调用警报,因此我需要一种检索和比较值的方法。 HTML:
Ruby 的 Dir、File 和 Pathname 类之间有什么区别?它们似乎共享通用方法,如 basename、dirname、glob 和 join。什么时候使用一种比另一种更有优势? 在将其功
我们在我们的应用程序中使用了 boost::filesystem。我有一个“完整”路径,它是通过将多个路径连接在一起构建的: #include #include namespace b
对于以下代码,我不断收到Uncaught TypeError: undefined is not a function: var jay = /^(\/gallery\/P[\w\dåäö\/]+)$
我正在报告从 native 系统 API 收集的一些信息。 (我知道这很糟糕......但我得到了我无法通过其他方式获得的信息,而且如果/当那个时间到来时,我不必更新我的应用程序。) native A
我需要从 Ruby (1.9.3) 中的 DOS (Win32) 路径获取文件的 NT( native )路径。 意思是,我有字符串: dos_path = "C:\Windows\regedit.e
我才刚刚开始使用 ASP.NET MVC,我有一个有点微不足道的问题:似乎每个 Controller 都有一个附加的类似文件夹的路径,所以我的站点变成了 mydomain.net/Home/somet
下面是bunyan logger的__init__函数。 def __init__(self, *args, **kwargs): """Defined default log format
总结 我如何在 C++ 中使用 libarchive 编写一个 zip 文件,这样路径名称将被 UTF-8 编码?使用 UTF-8 路径名时,特殊字符将在使用 OS X/Linux/Windows 8
我是一名优秀的程序员,十分优秀!