Giter Club home page Giter Club logo

Comments (1)

EliaSaSe avatar EliaSaSe commented on July 20, 2024

Hello IzaacJ,

the chars [, ], ?, * are interpreted as wildcards, see about_wildcards.

For cases where the path contains wildcards, many cmdlets are providing the -LiteralPath parameter. -LiteralPath takes the path as it is without any wildcard processing.

Look at this example:

PS C:\> Set-Location -Path Z:\[Scripts]
Set-Location : Cannot find path 'Z:\[Scripts]' because it does not exist.
At line:1 char:1
+ Set-Location -Path Z:\[Scripts]
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Z:\[Scripts]:String) [Set-Location], ItemNotFoundException
    + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
PS C:\> Set-Location -LiteralPath Z:\[Scripts]
PS Z:\[Scripts]>

Unfortunately Get-IniContent does not provide such a parameter. I see this solutions:

  1. Do not use wildcards in our path
  2. Add a parameter set to Get-IniContent (and other commands in this module) to support -LiteralPath
  3. Add a new command to allow to delegate the "content loading" to the user. Something like that: Get-Content -LiteralPath 'Z:\[Scripts]\[PS]\config.ini' | ConvertTo-IniContent (and as versa ConvertTo-IniString?)

If @lipkau finds the 2nd or 3rd idea sensible, I can help to suggest an implementation via pull request.

Edit: The 3rd idea duplicates issue #47 (Abstract away the concept of converting to/from INI format from that of reading/writing an INI file)

from psini.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.