No such directory: ‘‘D:\My Folder\Aandele\AJupyter\x01 BuySell’’
It means that it treats \1
as special character - you need to add escapes, so instead of:
c.ServerApp.root_dir = 'D:\My Folder\Aandele\AJupyter\1 BuySell'
it would be:
c.ServerApp.root_dir = 'D:\\My Folder\\Aandele\\AJupyter\\1 BuySell'