Get a script by specifying the path?

I need to access functions from a script which is placed in a folder (and I know the path).
Is there a way of getting the script as a “MonoScript” by just specifying the path (or in any other way if it works) ?

/TheDDestroyer12

No, that’s not possible. Scripts are attached to objects if they are MonoBehaviours, in which case you typically use GetComponent, or else you use the class name to create instances of the classes and so on.