ioerror errno 13 permission denied: C:\\pagefile.sys

2024/10/7 21:40:45

Below is my code, what I am trying to achieve is walking through the OS generating a MD5 hash of every file the code is functional, however, I receive the error in the title "ioerror errno 13 permission denied: 'C:\pagefile.sys'" when I try to run the file from C:\ is there a way i can run this as an admin? Even when I run cmd as an admin that does not work, thank you in advance.

import os, hashlibcurrent_dir = os.getcwd()
for root,dirs,files in os.walk(current_dir):for f in files:current_file = os.path.join(root,f)H = hashlib.md5()with open(current_file) as FIN:H.update(FIN.read())with open("gethashes.txt", "a") as myfile:myfile.write(current_file),myfile.write(",      "),myfile.write(H.hexdigest()),myfile.write("\n")print current_file, H.hexdigest()
Answer

As mentioned in error - Permission denied - since file need to be read for getting md5 of its content. There will be always a case when we don't have read permission .

import os, hashlibdef md5_chk(current_file):try:md5 = ''err = ''H = hashlib.md5()with open(current_file) as FIN:H.update(FIN.read())md5 = H.hexdigest()except Exception, e:md5 = Noneerr = str(e)print errreturn md5,errif __name__ == '__main__':    current_dir = os.getcwd()for root,dirs,files in os.walk(current_dir):with open("G://gethashes.txt", "a") as myfile:for f in files:current_file = os.path.join(root,f)md5_val,err = md5_chk(current_file)if md5_val is not None:myfile.write(current_file),myfile.write(",    "),myfile.write(md5_val),myfile.write("\n")print current_file, md5_valelse:myfile.write(current_file),myfile.write(",    "),myfile.write("Error - " + str(err)),myfile.write("\n")print current_file, str(err)

Please let me know if it is useful.

https://en.xdnf.cn/q/118776.html

Related Q&A

How can PyUSB be understood? [closed]

Its difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying thi…

Resize image in python without using resize() - nearest neighbor

For an assignment I want to resize a .jpg image with a python code, but without using the pil.image.resize() function or another similar function. I want to write the code myself but I cant figure out …

Concatenate two dataframes based on no of rows

I have two dataframes:a b c d e f 2 4 6 6 7 1 4 7 9 9 5 87 9 65 8 2Now I want to create a new dataframe like this:a b c d e f 2 4 6 6 7 1 4 7 9 9 5 8 That is, I only want the rows of the …

Having Problems with AzureChatOpenAI()

people. Im trying to use the AzureChatOpenAI(), but even if I put the right parameters, it doesnt work. Here it is: from langchain_core.messages import HumanMessage from langchain_openai import AzureCh…

Finding cycles in a dictionary

I have a dictionary which has values as:m = {1: 2, 7: 3, 2: 1, 4: 4, 5: 3, 6: 9}The required output should be cyclic values like 1:2 -> 2:1 = cycle, which both are present in dictionary. 4:4 is also…

Create a dataframe from HTML table in Python [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.Want to improve this question? Update the question so it focuses on one problem only by editing this post.Closed 9…

Unable to load a Django model from a separate directory in a database script

I am having difficulty writing a python script that takes a directory of .txt files and loads them into my database that is utilized in a Django project. Based on requirements the python script needs …

Leetcode problem 14. Longest Common Prefix (Python)

I tried to solve the problem (you can read description here: https://leetcode.com/problems/longest-common-prefix/) And the following is code I came up with. It gives prefix value of the first string in…

Python BS: Fetching rows with and without color attribute

I have some html that looks like this (this represents rows of data in a table, i.e the data between tr and /tr is one row in a table)<tr bgcolor="#f4f4f4"> <td height="25"…

Python multiple number guessing game

I am trying to create a number guessing game with multiple numbers. The computer generates 4 random numbers between 1 and 9 and then the user has 10 chances to guess the correct numbers. I need the fee…