<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Case sensitive file name in http protocol in Network and Storage Protocols</title>
    <link>https://community.netapp.com/t5/Network-and-Storage-Protocols/Case-sensitive-file-name-in-http-protocol/m-p/80158#M7244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;filer is a unix based system.........i dont think you can do that......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Dec 2011 04:31:43 GMT</pubDate>
    <dc:creator>Jeff_Yao</dc:creator>
    <dc:date>2011-12-06T04:31:43Z</dc:date>
    <item>
      <title>Case sensitive file name in http protocol</title>
      <link>https://community.netapp.com/t5/Network-and-Storage-Protocols/Case-sensitive-file-name-in-http-protocol/m-p/80153#M7243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have enabled http protocol on my filer, and set the root directory path and it is working fine. But in folder under root folder (rootdirectory/videos) I have some video files (wmv), i am able to play them when i use,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://servername/folder/filename.WMV" target="_blank"&gt;http://servername/folder/filename.WMV&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;but when i try &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://servername/folder/filename.wmv" target="_blank"&gt;http://servername/folder/filename.wmv&lt;/A&gt;&lt;SPAN&gt; it does not play which shows that filenames are case sensitvite here. My problem is that the software that create these files put .WMV as their extension and I cant change it to use small case. While reading software uses filename.wmv. Is there any way I can tell HTTP protocol in use to ignore case so files could be played. Any help will be very appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 06:40:07 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Network-and-Storage-Protocols/Case-sensitive-file-name-in-http-protocol/m-p/80153#M7243</guid>
      <dc:creator>YASIR_IRFAT</dc:creator>
      <dc:date>2025-06-05T06:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Case sensitive file name in http protocol</title>
      <link>https://community.netapp.com/t5/Network-and-Storage-Protocols/Case-sensitive-file-name-in-http-protocol/m-p/80158#M7244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;filer is a unix based system.........i dont think you can do that......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2011 04:31:43 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Network-and-Storage-Protocols/Case-sensitive-file-name-in-http-protocol/m-p/80158#M7244</guid>
      <dc:creator>Jeff_Yao</dc:creator>
      <dc:date>2011-12-06T04:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: Case sensitive file name in http protocol</title>
      <link>https://community.netapp.com/t5/Network-and-Storage-Protocols/Case-sensitive-file-name-in-http-protocol/m-p/80163#M7245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't change HTTP to allow that.&amp;nbsp; However you could export or share the HTTP path out to another system and convert them via script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warning this will rename ALL files to lower case.&amp;nbsp; Test these in a non-production environment, while they may work for me and others, they may affect your workload in an unexpected way.&lt;/P&gt;&lt;P&gt;From a Unix/Linux host it is as simple as:&amp;nbsp; rename 'y/A-Z/a-z/' *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With a Windows batch file:&amp;nbsp; for /F %i in ('dir /b /l') do rename %i %i&amp;nbsp; &amp;lt;---hating the font here /l is ell, the letter after K and before M&lt;/P&gt;&lt;P&gt;for /F %i means for each file in the current directory assign it to the variable "i"&lt;/P&gt;&lt;P&gt;dir /b /l will output only the filenames and all in lowercase&lt;/P&gt;&lt;P&gt;do rename %i %i means rename the output of that dir /b /l from the current case output to the lowercase output. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; - Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2011 13:12:08 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Network-and-Storage-Protocols/Case-sensitive-file-name-in-http-protocol/m-p/80163#M7245</guid>
      <dc:creator>columbus_admin</dc:creator>
      <dc:date>2011-12-06T13:12:08Z</dc:date>
    </item>
    <item>
      <title>Case sensitive file name in http protocol</title>
      <link>https://community.netapp.com/t5/Network-and-Storage-Protocols/Case-sensitive-file-name-in-http-protocol/m-p/80171#M7246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the resolution through "Manage Translations" under HTTP configuration in Filer Web access. In my case, files in required directory gets added very quickly through a software (cant modify how it uses filenames while creation) and old files are removed. So there should have been a scheduled tasks doing naming conversion that could effect overall performance as mentioned by "columbus_admin"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In current resolution, I created a Translation of type "Map" and converted,&lt;/P&gt;&lt;P&gt;/folder/*.wmv&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;/folder/*.WMV&lt;/P&gt;&lt;P&gt;It worked because my problem was pretty static as I always wanted it to convert requested *.wmv to *.WMV" on storage.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2011 14:21:21 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Network-and-Storage-Protocols/Case-sensitive-file-name-in-http-protocol/m-p/80171#M7246</guid>
      <dc:creator>YASIR_IRFAT</dc:creator>
      <dc:date>2011-12-06T14:21:21Z</dc:date>
    </item>
  </channel>
</rss>

